diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-02-02 05:49:42 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-02-02 05:49:42 +0000 |
commit | 8d163d22225f9a24167b6131ab6e1511fa5c916e (patch) | |
tree | ddb6e8c5ea40ac6d3d4496c8624e394581a11f75 /lib/Target/Alpha/AlphaISelPattern.cpp | |
parent | f941f6df4a0fd860490dfb024a68f42578088aec (diff) |
marked mem* as not supported
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaISelPattern.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaISelPattern.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp index 752be14c37..b641d19ac3 100644 --- a/lib/Target/Alpha/AlphaISelPattern.cpp +++ b/lib/Target/Alpha/AlphaISelPattern.cpp @@ -61,6 +61,10 @@ namespace { setOperationAction(ISD::SREM, MVT::f32, Expand); setOperationAction(ISD::SREM, MVT::f64, Expand); + setOperationAction(ISD::MEMMOVE , MVT::Other, Expand); + setOperationAction(ISD::MEMSET , MVT::Other, Expand); + setOperationAction(ISD::MEMCPY , MVT::Other, Expand); + computeRegisterProperties(); addLegalFPImmediate(+0.0); //F31 |