diff options
author | Nate Begeman <natebegeman@mac.com> | 2005-08-16 19:49:35 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2005-08-16 19:49:35 +0000 |
commit | 7cbd525ba85ebe440d15fa359ec940e404d14906 (patch) | |
tree | e4f2be03af10a438196be30a325975ef611a5e17 /lib/Target/Alpha/AlphaISelPattern.cpp | |
parent | f3e133a35f5aa6ed32ca29aa3675eff349d61008 (diff) |
Implement BR_CC and BRTWOWAY_CC. This allows the removal of a rather nasty
fixme from the PowerPC backend. Emit slightly better code for legalizing
select_cc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelPattern.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaISelPattern.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp index e898916f80..c0ae2acf97 100644 --- a/lib/Target/Alpha/AlphaISelPattern.cpp +++ b/lib/Target/Alpha/AlphaISelPattern.cpp @@ -90,6 +90,7 @@ namespace { addRegisterClass(MVT::f32, Alpha::FPRCRegisterClass); setOperationAction(ISD::BRCONDTWOWAY, MVT::Other, Expand); + setOperationAction(ISD::BRTWOWAY_CC, MVT::Other, Expand); setOperationAction(ISD::EXTLOAD, MVT::i1, Promote); setOperationAction(ISD::EXTLOAD, MVT::f32, Expand); |