aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/noinline.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/noinline.c')
-rw-r--r--test/CodeGen/noinline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/noinline.c b/test/CodeGen/noinline.c
index 45768815ab..e64a1a539f 100644
--- a/test/CodeGen/noinline.c
+++ b/test/CodeGen/noinline.c
@@ -1,7 +1,7 @@
// Make sure -fno-inline-functions is behaving correctly.
// rdar://10972766
-// RUN: %clang_cc1 -O3 -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
+// RUN: %clang_cc1 -O3 -fno-inline -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
inline int dont_inline_me(int a, int b) { return(a+b); }