Changes in directory llvm/include/llvm/CodeGen:

MachineConstantPool.h updated: 1.21 -> 1.22
SelectionDAG.h updated: 1.143 -> 1.144
---
Log message:

Unbreak VC++ build.

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

 MachineConstantPool.h |    3 ++-
 SelectionDAG.h        |    4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)


Index: llvm/include/llvm/CodeGen/MachineConstantPool.h
diff -u llvm/include/llvm/CodeGen/MachineConstantPool.h:1.21 
llvm/include/llvm/CodeGen/MachineConstantPool.h:1.22
--- llvm/include/llvm/CodeGen/MachineConstantPool.h:1.21        Fri Oct 27 
18:46:08 2006
+++ llvm/include/llvm/CodeGen/MachineConstantPool.h     Sun Nov  5 13:31:28 2006
@@ -61,7 +61,8 @@
 /// It contains a pointer to the value and an offset from the start of
 /// the constant pool.
 /// @brief An entry in a MachineConstantPool
-struct MachineConstantPoolEntry {
+class MachineConstantPoolEntry {
+public:
   /// The constant itself.
   union {
     Constant *ConstVal;


Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.143 
llvm/include/llvm/CodeGen/SelectionDAG.h:1.144
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.143      Sun Nov  5 03:29:04 2006
+++ llvm/include/llvm/CodeGen/SelectionDAG.h    Sun Nov  5 13:31:28 2006
@@ -322,9 +322,9 @@
 
   /// getStore - Helper function to build ISD::STORE nodes.
   ///
-  SDOperand getStore(SDOperand Chain, SDOperand Value, SDOperand Ptr,
+  SDOperand getStore(SDOperand Chain, SDOperand Val, SDOperand Ptr,
                      const Value *SV, int SVOffset, bool isVolatile=false);
-  SDOperand getTruncStore(SDOperand Chain, SDOperand Value, SDOperand Ptr,
+  SDOperand getTruncStore(SDOperand Chain, SDOperand Val, SDOperand Ptr,
                           const Value *SV, int SVOffset, MVT::ValueType TVT,
                           bool isVolatile=false);
   SDOperand getIndexedStore(SDOperand OrigStoe, SDOperand Base,



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to