[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Tue Feb 1 21:49:58 PST 2005
Changes in directory llvm/lib/Target/Alpha:
AlphaISelPattern.cpp updated: 1.26 -> 1.27
---
Log message:
marked mem* as not supported
---
Diffs of the changes: (+4 -0)
AlphaISelPattern.cpp | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp
diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.26 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.27
--- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.26 Tue Feb 1 22:35:44 2005
+++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp Tue Feb 1 23:49:42 2005
@@ -61,6 +61,10 @@
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
More information about the llvm-commits
mailing list