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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/noinline.c b/test/CodeGen/noinline.c
index 37e6c72f09..91cd5d4b60 100644
--- a/test/CodeGen/noinline.c
+++ b/test/CodeGen/noinline.c
@@ -1,7 +1,7 @@
-// Make sure -fno-inline is behaving correctly.
+// Make sure -fno-inline-functions is behaving correctly.
// rdar://10972766
-// RUN: %clang_cc1 -O3 -fno-inline -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
+// RUN: %clang_cc1 -O3 -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
int dont_inline_me(int a, int b) { return(a+b); }