summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-08-26 23:35:15 +0000
committerDevang Patel <dpatel@apple.com>2010-08-26 23:35:15 +0000
commitb12ff5999e60c394aa3ececb171e5d998fa04145 (patch)
tree6a13646e49998f3a13297f3718e7249a774096fe /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
parent6a77066913fdf850080134d73c9950984fa8a9a7 (diff)
downloadbcm5719-llvm-b12ff5999e60c394aa3ececb171e5d998fa04145.tar.gz
bcm5719-llvm-b12ff5999e60c394aa3ececb171e5d998fa04145.zip
Revert r112213. It is not needed.
llvm-svn: 112242
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
index 047a05dd671..2ba88974abe 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
@@ -36,7 +36,7 @@ class BasicBlock;
class BitCastInst;
class BranchInst;
class CallInst;
-class DbgInfoIntrinsic;
+class DbgValueInst;
class ExtractElementInst;
class ExtractValueInst;
class FCmpInst;
@@ -96,14 +96,14 @@ class SelectionDAGBuilder {
/// DanglingDebugInfo - Helper type for DanglingDebugInfoMap.
class DanglingDebugInfo {
- const DbgInfoIntrinsic* DI;
+ const DbgValueInst* DI;
DebugLoc dl;
unsigned SDNodeOrder;
public:
DanglingDebugInfo() : DI(0), dl(DebugLoc()), SDNodeOrder(0) { }
- DanglingDebugInfo(const DbgInfoIntrinsic *di, DebugLoc DL, unsigned SDNO) :
+ DanglingDebugInfo(const DbgValueInst *di, DebugLoc DL, unsigned SDNO) :
DI(di), dl(DL), SDNodeOrder(SDNO) { }
- const DbgInfoIntrinsic* getDI() { return DI; }
+ const DbgValueInst* getDI() { return DI; }
DebugLoc getdl() { return dl; }
unsigned getSDNodeOrder() { return SDNodeOrder; }
};
OpenPOWER on IntegriCloud