diff options
| author | Dan Gohman <gohman@apple.com> | 2007-10-15 19:22:17 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2007-10-15 19:22:17 +0000 |
| commit | e862243e1cd55c801df54c898f9057c23263b0fb (patch) | |
| tree | ded6990e14e15015e3e5c071ed4b72c066f01b77 /llvm/test | |
| parent | d4b3015dd70ac408a55da23d8c1d448a6e5d5e18 (diff) | |
| download | bcm5719-llvm-e862243e1cd55c801df54c898f9057c23263b0fb.tar.gz bcm5719-llvm-e862243e1cd55c801df54c898f9057c23263b0fb.zip | |
Reapply the fix in 42908 for this file. This changes the function names
from "test" to "foo" so that they don't match the grep -i ST.
llvm-svn: 43001
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/X86/fp_constant_op.llx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/X86/fp_constant_op.llx b/llvm/test/CodeGen/X86/fp_constant_op.llx index 8c59d1874d6..89cc831a78a 100644 --- a/llvm/test/CodeGen/X86/fp_constant_op.llx +++ b/llvm/test/CodeGen/X86/fp_constant_op.llx @@ -3,32 +3,32 @@ ; Test that the load of the constant is folded into the operation. -double %test_add(double %P) { +double %foo_add(double %P) { %tmp.1 = add double %P, 0x405EC00000000000 ret double %tmp.1 } -double %test_mul(double %P) { +double %foo_mul(double %P) { %tmp.1 = mul double %P, 0x405EC00000000000 ret double %tmp.1 } -double %test_sub(double %P) { +double %foo_sub(double %P) { %tmp.1 = sub double %P, 0x405EC00000000000 ret double %tmp.1 } -double %test_subr(double %P) { +double %foo_subr(double %P) { %tmp.1 = sub double 0x405EC00000000000, %P ret double %tmp.1 } -double %test_div(double %P) { +double %foo_div(double %P) { %tmp.1 = div double %P, 0x405EC00000000000 ret double %tmp.1 } -double %test_divr(double %P) { +double %foo_divr(double %P) { %tmp.1 = div double 0x405EC00000000000, %P ret double %tmp.1 } |

