[llvm-commits] [llvm] r43001 - /llvm/trunk/test/CodeGen/X86/fp_constant_op.llx

Dan Gohman djg at cray.com
Mon Oct 15 12:22:17 PDT 2007


Author: djg
Date: Mon Oct 15 14:22:17 2007
New Revision: 43001

URL: http://llvm.org/viewvc/llvm-project?rev=43001&view=rev
Log:
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.

Modified:
    llvm/trunk/test/CodeGen/X86/fp_constant_op.llx

Modified: llvm/trunk/test/CodeGen/X86/fp_constant_op.llx
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/fp_constant_op.llx?rev=43001&r1=43000&r2=43001&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/fp_constant_op.llx (original)
+++ llvm/trunk/test/CodeGen/X86/fp_constant_op.llx Mon Oct 15 14:22:17 2007
@@ -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
 }





More information about the llvm-commits mailing list