diff options
author | Dan Gohman <djg@cray.com> | 2007-10-15 19:22:17 +0000 |
---|---|---|
committer | Dan Gohman <djg@cray.com> | 2007-10-15 19:22:17 +0000 |
commit | 30bd2fd8f1ae6a6ca01610c63a4cd1981d8db921 (patch) | |
tree | f69f8bc947872a5522c9cbb92f66feaa511288d7 /test/CodeGen | |
parent | a89da40ef27242130d877e9999dd3f16f4e6c74b (diff) | |
download | external_llvm-30bd2fd8f1ae6a6ca01610c63a4cd1981d8db921.zip external_llvm-30bd2fd8f1ae6a6ca01610c63a4cd1981d8db921.tar.gz external_llvm-30bd2fd8f1ae6a6ca01610c63a4cd1981d8db921.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/fp_constant_op.llx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/X86/fp_constant_op.llx b/test/CodeGen/X86/fp_constant_op.llx index 8c59d18..89cc831 100644 --- a/test/CodeGen/X86/fp_constant_op.llx +++ b/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 } |