[llvm-commits] CVS: llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c

Tanya Lattner tonic at nondot.org
Wed Jun 6 14:01:07 PDT 2007



Changes in directory llvm/test/CFrontend:

2007-06-05-NoInlineAttribute.c updated: 1.1 -> 1.2
---
Log message:

Really use attribute.


---
Diffs of the changes:  (+2 -2)

 2007-06-05-NoInlineAttribute.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c
diff -u llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c:1.1 llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c:1.2
--- llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c:1.1	Wed Jun  6 15:52:16 2007
+++ llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c	Wed Jun  6 16:00:46 2007
@@ -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;
 }






More information about the llvm-commits mailing list