[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Driver / loongarch-msoft-float.c
blobebf27fb00e309ed136227eb9d2ffda31ddcbf487
1 // RUN: %clang --target=loongarch64 -msoft-float -fsyntax-only %s -### 2>&1 | \
2 // RUN: FileCheck %s --check-prefix=CC1
3 // RUN: %clang --target=loongarch64 -msoft-float -mfpu=0 -mabi=lp64s -fsyntax-only %s -### 2>&1 | \
4 // RUN: FileCheck %s --check-prefixes=CC1,NOWARN
5 // RUN: %clang --target=loongarch64 -msoft-float -mfpu=64 -mabi=lp64d -fsyntax-only %s -### 2>&1 | \
6 // RUN: FileCheck %s --check-prefixes=CC1,WARN
7 // RUN: %clang --target=loongarch64 -msoft-float -S -emit-llvm %s -o - | \
8 // RUN: FileCheck %s --check-prefix=IR
10 // NOWARN-NOT: warning:
11 // WARN: warning: ignoring '-mabi=lp64d' as it conflicts with that implied by '-msoft-float' (lp64s)
12 // WARN: warning: ignoring '-mfpu=64' as it conflicts with that implied by '-msoft-float' (0)
14 // CC1: "-target-feature" "-f"{{.*}} "-target-feature" "-d" "-target-feature" "-lsx"
15 // CC1: "-target-abi" "lp64s"
17 // IR: attributes #[[#]] ={{.*}}"target-features"="{{(.*,)?}}-d,{{(.*,)?}}-f,-lsx"
19 int foo(void) {
20 return 3;