[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelLowering.cpp
Nate Begeman
natebegeman at mac.com
Tue Jan 31 23:19:58 PST 2006
Changes in directory llvm/lib/Target/X86:
X86ISelLowering.cpp updated: 1.75 -> 1.76
---
Log message:
Fix some of the stuff in the PPC README file, and clean up legalization
of the SELECT_CC, BR_CC, and BRTWOWAY_CC nodes.
---
Diffs of the changes: (+2 -0)
X86ISelLowering.cpp | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u llvm/lib/Target/X86/X86ISelLowering.cpp:1.75 llvm/lib/Target/X86/X86ISelLowering.cpp:1.76
--- llvm/lib/Target/X86/X86ISelLowering.cpp:1.75 Tue Jan 31 19:19:32 2006
+++ llvm/lib/Target/X86/X86ISelLowering.cpp Wed Feb 1 01:19:44 2006
@@ -117,6 +117,8 @@
}
setOperationAction(ISD::BRCONDTWOWAY , MVT::Other, Expand);
setOperationAction(ISD::BRTWOWAY_CC , MVT::Other, Expand);
+ setOperationAction(ISD::BR_CC , MVT::Other, Expand);
+ setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Expand);
setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
More information about the llvm-commits
mailing list