diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-15 22:49:34 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-15 22:49:34 +0000 |
commit | 9c8c830e37ddd809fcef30188e62a9dae7b1a41c (patch) | |
tree | 32f3448c7a7401b80be6c5c52b4df09b32504c27 /test | |
parent | 97ecc8b8f4ab1c3f1d9fe9ef94cf86297aea3532 (diff) | |
download | external_llvm-9c8c830e37ddd809fcef30188e62a9dae7b1a41c.zip external_llvm-9c8c830e37ddd809fcef30188e62a9dae7b1a41c.tar.gz external_llvm-9c8c830e37ddd809fcef30188e62a9dae7b1a41c.tar.bz2 |
Update this test to use fmul instead of mul.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73436 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/fmul-zero.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fmul-zero.ll b/test/CodeGen/X86/fmul-zero.ll index 8f705a4..73aa713 100644 --- a/test/CodeGen/X86/fmul-zero.ll +++ b/test/CodeGen/X86/fmul-zero.ll @@ -3,7 +3,7 @@ define void @test14(<4 x float>*) nounwind { load <4 x float>* %0, align 1 - mul <4 x float> %2, zeroinitializer + fmul <4 x float> %2, zeroinitializer store <4 x float> %3, <4 x float>* %0, align 1 ret void } |