aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2009-07-29 01:01:19 +0000
committerEric Christopher <echristo@apple.com>2009-07-29 01:01:19 +0000
commit79e0e8b8d24df882b3187d12994d4feb25e8bbbe (patch)
tree597a15649cfbec9f6b025d22ec9179eacb1a71b0 /lib
parent1d29c1f953b18dcc183487e7c8f22354e65e3f67 (diff)
downloadexternal_llvm-79e0e8b8d24df882b3187d12994d4feb25e8bbbe.zip
external_llvm-79e0e8b8d24df882b3187d12994d4feb25e8bbbe.tar.gz
external_llvm-79e0e8b8d24df882b3187d12994d4feb25e8bbbe.tar.bz2
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77415 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index 796f073..5ec325c 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -6201,8 +6201,8 @@ X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
}
// ptest intrinsics. The intrinsic these come from are designed to return
- // a boolean value, not just an instruction so lower it to the ptest
- // pattern and a conditional move to the result.
+ // an integer value, not just an instruction so lower it to the ptest
+ // pattern and a setcc for the result.
case Intrinsic::x86_sse41_ptestz:
case Intrinsic::x86_sse41_ptestc:
case Intrinsic::x86_sse41_ptestnzc:{