diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-18 22:29:15 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-18 22:29:15 +0000 |
commit | 771e0ab32a81eb501edcd4027e07c5c14d591a09 (patch) | |
tree | 9bc36cdd48036f7603a97757a0095a70696bd1da /test/CodeGen/X86/fma_patterns.ll | |
parent | bbcea55b68fad8116c29b3e831c5df398d558569 (diff) | |
download | external_llvm-771e0ab32a81eb501edcd4027e07c5c14d591a09.zip external_llvm-771e0ab32a81eb501edcd4027e07c5c14d591a09.tar.gz external_llvm-771e0ab32a81eb501edcd4027e07c5c14d591a09.tar.bz2 |
Disambiguate function names in some CodeGen tests. (Some tests were using function names that also were names of instructions and/or doing other unusual things that were making the test not amenable to otherwise scriptable pattern matching.) No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186621 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/fma_patterns.ll')
-rw-r--r-- | test/CodeGen/X86/fma_patterns.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/fma_patterns.ll b/test/CodeGen/X86/fma_patterns.ll index 6d98d59..cfb598d 100644 --- a/test/CodeGen/X86/fma_patterns.ll +++ b/test/CodeGen/X86/fma_patterns.ll @@ -182,11 +182,11 @@ define float @test_x86_fnmsub_ss(float %a0, float %a1, float %a2) { ret float %res } -; CHECK: test_x86_fmadd_ps +; CHECK: test_x86_fmadd_ps_load ; CHECK: vmovaps (%rdi), %xmm2 ; CHECK: vfmadd213ps %xmm1, %xmm0, %xmm2 ; CHECK: ret -; CHECK_FMA4: test_x86_fmadd_ps +; CHECK_FMA4: test_x86_fmadd_ps_load ; CHECK_FMA4: vfmaddps %xmm1, (%rdi), %xmm0, %xmm0 ; CHECK_FMA4: ret define <4 x float> @test_x86_fmadd_ps_load(<4 x float>* %a0, <4 x float> %a1, <4 x float> %a2) { @@ -196,11 +196,11 @@ define <4 x float> @test_x86_fmadd_ps_load(<4 x float>* %a0, <4 x float> %a1, <4 ret <4 x float> %res } -; CHECK: test_x86_fmsub_ps +; CHECK: test_x86_fmsub_ps_load ; CHECK: vmovaps (%rdi), %xmm2 ; CHECK: fmsub213ps %xmm1, %xmm0, %xmm2 ; CHECK: ret -; CHECK_FMA4: test_x86_fmsub_ps +; CHECK_FMA4: test_x86_fmsub_ps_load ; CHECK_FMA4: vfmsubps %xmm1, (%rdi), %xmm0, %xmm0 ; CHECK_FMA4: ret define <4 x float> @test_x86_fmsub_ps_load(<4 x float>* %a0, <4 x float> %a1, <4 x float> %a2) { |