mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Refine DebugLoc per review comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63132 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -378,13 +378,14 @@ MachineFunction& MachineFunction::get(const Function *F)
|
||||
return *mc;
|
||||
}
|
||||
|
||||
/// lookUpDebugLocId - Look up the DebugLocTuple index with the given
|
||||
/// source file, line, and column. It may add a new filename and / or
|
||||
/// a new DebugLocTuple.
|
||||
unsigned MachineFunction::lookUpDebugLocId(unsigned Src, unsigned Line,
|
||||
unsigned Col) {
|
||||
/// getOrCreateDebugLocID - Look up the DebugLocTuple index with the given
|
||||
/// source file, line, and column. If none currently exists, create add a new
|
||||
/// new DebugLocTuple and insert it into the DebugIdMap.
|
||||
unsigned MachineFunction::getOrCreateDebugLocID(unsigned Src, unsigned Line,
|
||||
unsigned Col) {
|
||||
struct DebugLocTuple Tuple(Src, Line, Col);
|
||||
DebugIdMapType::iterator II = DebugLocInfo.DebugIdMap.find(Tuple);
|
||||
DenseMap<DebugLocTuple, unsigned>::iterator II
|
||||
= DebugLocInfo.DebugIdMap.find(Tuple);
|
||||
if (II != DebugLocInfo.DebugIdMap.end())
|
||||
return II->second;
|
||||
// Add a new tuple.
|
||||
|
Reference in New Issue
Block a user