[llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelLowering.cpp IA64ISelPattern.cpp

Jim Laskey jlaskey at apple.com
Wed Jan 4 17:47:58 PST 2006



Changes in directory llvm/lib/Target/IA64:

IA64ISelLowering.cpp updated: 1.10 -> 1.11
IA64ISelPattern.cpp updated: 1.72 -> 1.73
---
Log message:

Had expand logic backward.


---
Diffs of the changes:  (+4 -0)

 IA64ISelLowering.cpp |    2 ++
 IA64ISelPattern.cpp  |    2 ++
 2 files changed, 4 insertions(+)


Index: llvm/lib/Target/IA64/IA64ISelLowering.cpp
diff -u llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.10 llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.11
--- llvm/lib/Target/IA64/IA64ISelLowering.cpp:1.10	Wed Jan  4 19:25:28 2006
+++ llvm/lib/Target/IA64/IA64ISelLowering.cpp	Wed Jan  4 19:47:43 2006
@@ -74,6 +74,8 @@
 
       // We don't have line number support yet.
       setOperationAction(ISD::LOCATION, MVT::Other, Expand);
+      setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
+      setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
 
       //IA64 has these, but they are not implemented
       setOperationAction(ISD::CTTZ , MVT::i64  , Expand);


Index: llvm/lib/Target/IA64/IA64ISelPattern.cpp
diff -u llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.72 llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.73
--- llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.72	Wed Jan  4 19:25:28 2006
+++ llvm/lib/Target/IA64/IA64ISelPattern.cpp	Wed Jan  4 19:47:43 2006
@@ -102,6 +102,8 @@
 
       // We don't have line number support yet.
       setOperationAction(ISD::LOCATION, MVT::Other, Expand);
+      setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
+      setOperationAction(ISD::DEBUG_LABEL, MVT::Other, Expand);
 
       computeRegisterProperties();
 






More information about the llvm-commits mailing list