[llvm-commits] CVS: llvm/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll

Reid Spencer reid at x10sys.com
Fri Jan 26 00:26:14 PST 2007



Changes in directory llvm/test/CodeGen/Generic:

2007-01-15-LoadSelectCycle.ll updated: 1.1 -> 1.2
---
Log message:

For PR761: http://llvm.org/PR761 :
Remove "target endian/pointersize" or add "target datalayout" to make
the test parse properly or set the datalayout because defaults changes.

For PR645: http://llvm.org/PR645 :
Make global names use the @ prefix.

For llvm-upgrade changes:
Fix test cases or completely remove use of llvm-upgrade for test cases 
that cannot survive the new renaming or upgrade capabilities. 



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

 2007-01-15-LoadSelectCycle.ll |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll
diff -u llvm/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll:1.1 llvm/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll:1.2
--- llvm/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll:1.1	Mon Jan 15 23:58:50 2007
+++ llvm/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll	Fri Jan 26 02:25:06 2007
@@ -1,12 +1,12 @@
 ; RUN: llvm-as < %s | llc
 ; PR1114
 
-declare i1 %foo()
+declare i1 @foo()
 
-define i32 %test(i32* %A, i32* %B) {
+define i32 @test(i32* %A, i32* %B) {
 	%a = load i32* %A
 	%b = load i32* %B
-	%cond = call i1 %foo()
+	%cond = call i1 @foo()
 	%c = select i1 %cond, i32 %a, i32 %b
 	ret i32 %c
 }






More information about the llvm-commits mailing list