diff options
Diffstat (limited to 'test/CodeGen/X86/select-with-and-or.ll')
-rw-r--r-- | test/CodeGen/X86/select-with-and-or.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/select-with-and-or.ll b/test/CodeGen/X86/select-with-and-or.ll index 1ccf30b..40af46b 100644 --- a/test/CodeGen/X86/select-with-and-or.ll +++ b/test/CodeGen/X86/select-with-and-or.ll @@ -62,7 +62,7 @@ define <4 x i32> @test6(<4 x float> %a, <4 x float> %b, <4 x i32> %c) { define <4 x i32> @test7(<4 x float> %a, <4 x float> %b, <4 x i32>* %p) { %f = fcmp ult <4 x float> %a, %b %s = sext <4 x i1> %f to <4 x i32> - %l = load <4 x i32>* %p + %l = load <4 x i32>, <4 x i32>* %p %r = and <4 x i32> %l, %s ret <4 x i32> %r ; CHECK: test7 |