diff options
author | Duraid Madina <duraid@octopus.com.au> | 2005-04-14 08:37:32 +0000 |
---|---|---|
committer | Duraid Madina <duraid@octopus.com.au> | 2005-04-14 08:37:32 +0000 |
commit | c4ccc2db6b152302107dbb98134856e1e2aea24f (patch) | |
tree | c40767a07d803931410f7cc21c06bb0e7d872b03 | |
parent | ef7288c824e082d560edb783156a74ee310bfe28 (diff) |
we have zextloads, not sextloads!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21296 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/IA64/IA64ISelPattern.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/IA64/IA64ISelPattern.cpp b/lib/Target/IA64/IA64ISelPattern.cpp index 7ca220bda1..34ab0a6119 100644 --- a/lib/Target/IA64/IA64ISelPattern.cpp +++ b/lib/Target/IA64/IA64ISelPattern.cpp @@ -64,11 +64,11 @@ namespace { setOperationAction(ISD::EXTLOAD , MVT::i1 , Promote); setOperationAction(ISD::ZEXTLOAD , MVT::i1 , Expand); - setOperationAction(ISD::ZEXTLOAD , MVT::i32 , Expand); setOperationAction(ISD::SEXTLOAD , MVT::i1 , Expand); setOperationAction(ISD::SEXTLOAD , MVT::i8 , Expand); setOperationAction(ISD::SEXTLOAD , MVT::i16 , Expand); + setOperationAction(ISD::SEXTLOAD , MVT::i32 , Expand); setOperationAction(ISD::SREM , MVT::f32 , Expand); setOperationAction(ISD::SREM , MVT::f64 , Expand); |