[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Jan 12 18:39:55 PST 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAG.cpp updated: 1.237 -> 1.238
---
Log message:

add stacksave/stackrestore nodes


---
Diffs of the changes:  (+6 -2)

 SelectionDAG.cpp |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.237 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.238
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.237	Wed Jan 11 16:13:48 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp	Thu Jan 12 20:39:42 2006
@@ -1982,8 +1982,12 @@
   case ISD::TRUNCSTORE: return "truncstore";
 
   case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
-  case ISD::EXTRACT_ELEMENT: return "extract_element";
-  case ISD::BUILD_PAIR: return "build_pair";
+  case ISD::EXTRACT_ELEMENT:    return "extract_element";
+  case ISD::BUILD_PAIR:         return "build_pair";
+  case ISD::STACKSAVE:          return "stacksave";
+  case ISD::STACKRESTORE:       return "stackrestore";
+    
+  // Block memory operations.
   case ISD::MEMSET:  return "memset";
   case ISD::MEMCPY:  return "memcpy";
   case ISD::MEMMOVE: return "memmove";






More information about the llvm-commits mailing list