We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09bb63e commit f042fe4Copy full SHA for f042fe4
test/CodeGen/inline-optim.cc renamed to test/CodeGen/inline-optim.c
@@ -1,8 +1,8 @@
1
// Make sure -finline-functions family flags are behaving correctly.
2
3
-// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
4
-// RUN: %clang_cc1 -O3 -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
5
-// RUN: %clang_cc1 -finline-functions -emit-llvm %s -o - | FileCheck -check-prefix=INLINE %s
+// RUN: %clang_cc1 -triple i686-pc-win32 -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
+// RUN: %clang_cc1 -triple i686-pc-win32 -O3 -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
+// RUN: %clang_cc1 -triple i686-pc-win32 -finline-functions -emit-llvm %s -o - | FileCheck -check-prefix=INLINE %s
6
7
inline int inline_hint(int a, int b) { return(a+b); }
8
0 commit comments