summaryrefslogtreecommitdiffstats
path: root/test/CodeGen
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-03-06 21:17:19 +0000
committerChad Rosier <mcrosier@apple.com>2012-03-06 21:17:19 +0000
commit634a4b1b045b13e7ddfa57934cf2b85d4348f77f (patch)
tree0e734d1c0bdcc0189524798052ce07286d117493 /test/CodeGen
parent7ba87f38462dde08e4962936a7612b7869e06c0f (diff)
[driver] What was implemented in r152130 was actually -fno-inline-functions, not
-fno-inline. Part of rdar://10972766 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-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); }