[llvm-commits] CVS: llvm/test/Regression/CFrontend/2005-09-24-AsmUserPrefix.c

Chris Lattner lattner at cs.uiuc.edu
Sat Sep 24 01:38:39 PDT 2005



Changes in directory llvm/test/Regression/CFrontend:

2005-09-24-AsmUserPrefix.c added (r1.1)
---
Log message:

new testcase for PR630: http://llvm.cs.uiuc.edu/PR630 


---
Diffs of the changes:  (+9 -0)

 2005-09-24-AsmUserPrefix.c |    9 +++++++++
 1 files changed, 9 insertions(+)


Index: llvm/test/Regression/CFrontend/2005-09-24-AsmUserPrefix.c
diff -c /dev/null llvm/test/Regression/CFrontend/2005-09-24-AsmUserPrefix.c:1.1
*** /dev/null	Sat Sep 24 03:38:38 2005
--- llvm/test/Regression/CFrontend/2005-09-24-AsmUserPrefix.c	Sat Sep 24 03:38:28 2005
***************
*** 0 ****
--- 1,9 ----
+ // RUN: %llvmgcc %s -S -o - | gccas &&
+ // RUN: %llvmgcc %s -S -o - | gccas | llc &&
+ // RUN: %llvmgcc %s -S -o - | gccas | llc | not grep _foo2
+ 
+ void foo() __asm__("foo2");
+ 
+ void bar() {
+   foo();
+ }






More information about the llvm-commits mailing list