[llvm-commits] [llvm] r77415 - /llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
Eric Christopher
echristo at apple.com
Tue Jul 28 18:01:20 PDT 2009
Author: echristo
Date: Tue Jul 28 20:01:19 2009
New Revision: 77415
URL: http://llvm.org/viewvc/llvm-project?rev=77415&view=rev
Log:
Fix comment.
Modified:
llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=77415&r1=77414&r2=77415&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Tue Jul 28 20:01:19 2009
@@ -6201,8 +6201,8 @@
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:{
More information about the llvm-commits
mailing list