summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-01-20 00:19:24 +0000
committerDale Johannesen <dalej@apple.com>2010-01-20 00:19:24 +0000
commit918f0f0beab7401172b0b17aeb04e8d757e97a10 (patch)
tree14a0ca432f5a6920f393499865a2eeb9c6e007a1 /include
parentcd9e155755dab1913238ffc0374111a39d500adf (diff)
downloadllvm-918f0f0beab7401172b0b17aeb04e8d757e97a10.tar.gz
llvm-918f0f0beab7401172b0b17aeb04e8d757e97a10.tar.bz2
llvm-918f0f0beab7401172b0b17aeb04e8d757e97a10.tar.xz
Move findDebugLoc somewhere more central. Fix
more cases where debug declarations affect debug line info. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineBasicBlock.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h
index 6b4c64055b..ad4bc1f79d 100644
--- a/include/llvm/CodeGen/MachineBasicBlock.h
+++ b/include/llvm/CodeGen/MachineBasicBlock.h
@@ -367,6 +367,9 @@ private: // Methods used to maintain doubly linked list of blocks...
void removePredecessor(MachineBasicBlock *pred);
};
+DebugLoc
+findDebugLoc(MachineBasicBlock::iterator &MBBI, MachineBasicBlock &MBB);
+
raw_ostream& operator<<(raw_ostream &OS, const MachineBasicBlock &MBB);
void WriteAsOperand(raw_ostream &, const MachineBasicBlock*, bool t);