diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-07 04:50:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-07 04:50:48 +0000 |
commit | 7a7c979dddfbcf99b54673925114477ba9f306ff (patch) | |
tree | 9422540cd4d1bdbdddb013ded205378b592a92ca | |
parent | ee738803c44153627d2fab42b14e5725d0c81a29 (diff) |
Fix CodeGen/Generic/bool-to-double.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23652 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/IA64/IA64ISelPattern.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/IA64/IA64ISelPattern.cpp b/lib/Target/IA64/IA64ISelPattern.cpp index 04b331cff0..faeaaf2e37 100644 --- a/lib/Target/IA64/IA64ISelPattern.cpp +++ b/lib/Target/IA64/IA64ISelPattern.cpp @@ -81,6 +81,9 @@ namespace { setOperationAction(ISD::MEMMOVE , MVT::Other, Expand); setOperationAction(ISD::MEMSET , MVT::Other, Expand); setOperationAction(ISD::MEMCPY , MVT::Other, Expand); + + setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote); + setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote); // We don't support sin/cos/sqrt setOperationAction(ISD::FSIN , MVT::f64, Expand); |