diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-16 22:28:37 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-08-16 22:28:37 +0000 |
commit | 067d4c7c2790b8500a536edcfe8834e8343632ad (patch) | |
tree | e4c1082c42e8193d8b3dbc8f564987f1e1ab39c4 | |
parent | 6cc00429ff750a815f0c3b48d79a0c6e45f68e55 (diff) | |
download | bcm5719-llvm-067d4c7c2790b8500a536edcfe8834e8343632ad.tar.gz bcm5719-llvm-067d4c7c2790b8500a536edcfe8834e8343632ad.zip |
llvm/test/CodeGen/X86/fmul-combines.ll: Appease Windows x64. <4 x float> is passed by stack.
llvm-svn: 215821
-rw-r--r-- | llvm/test/CodeGen/X86/fmul-combines.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fmul-combines.ll b/llvm/test/CodeGen/X86/fmul-combines.ll index 22632d3dd3e..a0122356720 100644 --- a/llvm/test/CodeGen/X86/fmul-combines.ll +++ b/llvm/test/CodeGen/X86/fmul-combines.ll @@ -87,7 +87,7 @@ define float @fmul_fneg_fneg_f32(float %x, float %y) { ret float %mul } ; CHECK-LABEL: fmul_fneg_fneg_v4f32: -; CHECK: mulps %xmm1, %xmm0 +; CHECK: mulps {{%xmm1|\(%rdx\)}}, %xmm0 ; CHECK-NEXT: retq define <4 x float> @fmul_fneg_fneg_v4f32(<4 x float> %x, <4 x float> %y) { %x.neg = fsub <4 x float> <float -0.0, float -0.0, float -0.0, float -0.0>, %x |