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 | 8e85118943a729fc31849cd81555bf179ef9d1e6 (patch) | |
tree | f4b4eaa9675fca6c7d74e45cd924ead70b1291e8 /llvm/test/CodeGen/X86/fmul-zero.ll | |
parent | 6e6808adafd7c8968e76054a8b3fc36b94242fc4 (diff) | |
download | bcm5719-llvm-8e85118943a729fc31849cd81555bf179ef9d1e6.tar.gz bcm5719-llvm-8e85118943a729fc31849cd81555bf179ef9d1e6.zip |
Update this test to use fmul instead of mul.
llvm-svn: 73436
Diffstat (limited to 'llvm/test/CodeGen/X86/fmul-zero.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fmul-zero.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fmul-zero.ll b/llvm/test/CodeGen/X86/fmul-zero.ll index 8f705a4d242..73aa713de52 100644 --- a/llvm/test/CodeGen/X86/fmul-zero.ll +++ b/llvm/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 } |