aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-03 17:24:59 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-03 17:24:59 +0000
commitaff93871683c7888a7c7e112ac1a4904eb7a386b (patch)
treed8ba0a4841222e3666490b043ba3d22fe27a9719
parentf54ad97a4e47e70ad74c16e5f84aa25f17c35cb2 (diff)
Fix a comment that referred to the now defunct ubyte type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32840 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index ca9cfcdea7..b7520d45c9 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -4453,7 +4453,7 @@ SDOperand X86TargetLowering::LowerMEMSET(SDOperand Op, SelectionDAG &DAG) {
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;