summaryrefslogtreecommitdiffstats
path: root/llvm/test/CFrontend
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2007-06-06 21:00:46 +0000
committerTanya Lattner <tonic@nondot.org>2007-06-06 21:00:46 +0000
commitc7c8b5a3d8e53f1720ee20f1e276dfe5382403a3 (patch)
tree1dd42d51a695e71fd4879a33e9e0994e1df0e95d /llvm/test/CFrontend
parent65cdd36e54fb94c42d9cf9cad827cbd95bf9bb0f (diff)
downloadbcm5719-llvm-c7c8b5a3d8e53f1720ee20f1e276dfe5382403a3.tar.gz
bcm5719-llvm-c7c8b5a3d8e53f1720ee20f1e276dfe5382403a3.zip
Really use attribute.
llvm-svn: 37480
Diffstat (limited to 'llvm/test/CFrontend')
-rw-r--r--llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c b/llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c
index c0c17c921be..1fd981b6e4d 100644
--- a/llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c
+++ b/llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c
@@ -1,8 +1,8 @@
// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep llvm.noinline
-int bar(int x, int y); __attribute__((noinline))
+static int bar(int x, int y) __attribute__((noinline));
-int bar(int x, int y)
+static int bar(int x, int y)
{
return x + y;
}
OpenPOWER on IntegriCloud