[llvm-commits] CVS: llvm/include/llvm/Target/TargetLowering.h

Chris Lattner sabre at nondot.org
Mon Apr 9 14:18:51 PDT 2007



Changes in directory llvm/include/llvm/Target:

TargetLowering.h updated: 1.119 -> 1.120
---
Log message:

add a default ctor for AddrMode.


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

 TargetLowering.h |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/include/llvm/Target/TargetLowering.h
diff -u llvm/include/llvm/Target/TargetLowering.h:1.119 llvm/include/llvm/Target/TargetLowering.h:1.120
--- llvm/include/llvm/Target/TargetLowering.h:1.119	Fri Mar 30 23:05:24 2007
+++ llvm/include/llvm/Target/TargetLowering.h	Mon Apr  9 16:18:34 2007
@@ -872,6 +872,7 @@
     int64_t      BaseOffs;
     bool         HasBaseReg;
     int64_t      Scale;
+    AddrMode() : BaseGV(0), BaseOffs(0), HasBaseReg(false), Scale(0) {}
   };
   
   /// isLegalAddressingMode - Return true if the addressing mode represented by






More information about the llvm-commits mailing list