[llvm-commits] CVS: llvm/test/CFrontend/2007-04-11-InlineAsmStruct.c 2007-04-11-InlineAsmUnion.c

Chris Lattner sabre at nondot.org
Sun Apr 29 11:59:18 PDT 2007



Changes in directory llvm/test/CFrontend:

2007-04-11-InlineAsmStruct.c updated: 1.2 -> 1.3
2007-04-11-InlineAsmUnion.c updated: 1.4 -> 1.5
---
Log message:

not all targets want to return an i32.  What really matters is whether llc accepts the generated code.


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

 2007-04-11-InlineAsmStruct.c |    2 +-
 2007-04-11-InlineAsmUnion.c  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/CFrontend/2007-04-11-InlineAsmStruct.c
diff -u llvm/test/CFrontend/2007-04-11-InlineAsmStruct.c:1.2 llvm/test/CFrontend/2007-04-11-InlineAsmStruct.c:1.3
--- llvm/test/CFrontend/2007-04-11-InlineAsmStruct.c:1.2	Sun Apr 15 15:08:37 2007
+++ llvm/test/CFrontend/2007-04-11-InlineAsmStruct.c	Sun Apr 29 13:59:01 2007
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call i32 asm}
+// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
 
 struct V { short X, Y; };
 int bar() {


Index: llvm/test/CFrontend/2007-04-11-InlineAsmUnion.c
diff -u llvm/test/CFrontend/2007-04-11-InlineAsmUnion.c:1.4 llvm/test/CFrontend/2007-04-11-InlineAsmUnion.c:1.5
--- llvm/test/CFrontend/2007-04-11-InlineAsmUnion.c:1.4	Fri Apr 20 22:35:28 2007
+++ llvm/test/CFrontend/2007-04-11-InlineAsmUnion.c	Sun Apr 29 13:59:01 2007
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call i32 asm}
+// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
 
 union U { int x; float p; };
 void foo() {






More information about the llvm-commits mailing list