diff test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll @ 95:afa8332a0e37

LLVM 3.8
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 13 Oct 2015 17:48:58 +0900
parents 95c75e76d11b
children
line wrap: on
line diff
--- a/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll	Wed Feb 18 14:56:07 2015 +0900
+++ b/test/CodeGen/Generic/2007-01-15-LoadSelectCycle.ll	Tue Oct 13 17:48:58 2015 +0900
@@ -4,8 +4,8 @@
 declare i1 @foo()
 
 define i32 @test(i32* %A, i32* %B) {
-	%a = load i32* %A
-	%b = load i32* %B
+	%a = load i32, i32* %A
+	%b = load i32, i32* %B
 	%cond = call i1 @foo()
 	%c = select i1 %cond, i32 %a, i32 %b
 	ret i32 %c