[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelLowering.cpp

Evan Cheng evan.cheng at apple.com
Wed Apr 26 11:21:44 PDT 2006



Changes in directory llvm/lib/Target/X86:

X86ISelLowering.cpp updated: 1.188 -> 1.189
---
Log message:

Fix fastcc failures.


---
Diffs of the changes:  (+3 -0)

 X86ISelLowering.cpp |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u llvm/lib/Target/X86/X86ISelLowering.cpp:1.188 llvm/lib/Target/X86/X86ISelLowering.cpp:1.189
--- llvm/lib/Target/X86/X86ISelLowering.cpp:1.188	Tue Apr 25 20:20:17 2006
+++ llvm/lib/Target/X86/X86ISelLowering.cpp	Wed Apr 26 13:21:31 2006
@@ -937,6 +937,9 @@
         ArgValue = DAG.getConstantFP(0, ObjectVT);
     }
     FormalArgs.push_back(ArgValue);
+
+    if (ObjSize)
+      ArgOffset += ArgIncrement;   // Move on to the next argument.
   }
 }
 






More information about the llvm-commits mailing list