Move register numbers out of "extra" into "contents". Other minor cleanup.
[oota-llvm.git] / include / llvm / IntrinsicInst.h
index da1bc4ddce632fc26921771588b88130b8643d5f..146ce1db080aac4c2f3dba484d3e11305866129f 100644 (file)
@@ -163,7 +163,7 @@ namespace llvm {
   /// DbgDeclareInst - This represents the llvm.dbg.declare instruction.
   ///
   struct DbgDeclareInst : public DbgInfoIntrinsic {
-    Value *getAllocA() const { return StripCast(getOperand(1)); }
+    Value *getAddress()  const { return getOperand(1); }
     Value *getVariable() const { return StripCast(getOperand(2)); }
 
     // Methods for support type inquiry through isa, cast, and dyn_cast: