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

Reid Spencer reid at x10sys.com
Wed Jan 3 09:25:14 PST 2007



Changes in directory llvm/lib/Target/X86:

X86ISelLowering.cpp updated: 1.309 -> 1.310
---
Log message:

Fix a comment that referred to the now defunct ubyte type.


---
Diffs of the changes:  (+1 -1)

 X86ISelLowering.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u llvm/lib/Target/X86/X86ISelLowering.cpp:1.309 llvm/lib/Target/X86/X86ISelLowering.cpp:1.310
--- llvm/lib/Target/X86/X86ISelLowering.cpp:1.309	Wed Jan  3 05:43:14 2007
+++ llvm/lib/Target/X86/X86ISelLowering.cpp	Wed Jan  3 11:24:59 2007
@@ -4453,7 +4453,7 @@
     Entry.Ty = IntPtrTy;
     Entry.isSigned = false;
     Args.push_back(Entry);
-    // Extend the ubyte argument to be an int value for the call.
+    // Extend the unsigned i8 argument to be an int value for the call.
     Entry.Node = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Op.getOperand(2));
     Entry.Ty = IntPtrTy;
     Entry.isSigned = false;






More information about the llvm-commits mailing list