[llvm-commits] CVS: llvm/include/llvm/IntrinsicInst.h

Jim Laskey jlaskey at apple.com
Mon Mar 27 15:30:30 PST 2006



Changes in directory llvm/include/llvm:

IntrinsicInst.h updated: 1.14 -> 1.15
---
Log message:

Should not remove casts from variable's alloca.


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

 IntrinsicInst.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/IntrinsicInst.h
diff -u llvm/include/llvm/IntrinsicInst.h:1.14 llvm/include/llvm/IntrinsicInst.h:1.15
--- llvm/include/llvm/IntrinsicInst.h:1.14	Fri Mar 24 03:50:26 2006
+++ llvm/include/llvm/IntrinsicInst.h	Mon Mar 27 17:30:18 2006
@@ -163,7 +163,7 @@
   /// DbgDeclareInst - This represents the llvm.dbg.declare instruction.
   ///
   struct DbgDeclareInst : public DbgInfoIntrinsic {
-    Value *getAddress()  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:






More information about the llvm-commits mailing list