aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/MachineFunction.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-01-26 07:53:42 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-01-26 07:53:42 +0000
commitc4b1abd81e4de314880110c5d58917d4747fb978 (patch)
treee85a0d443e61cc9bbba6b47765d5bde47664274b /include/llvm/CodeGen/MachineFunction.h
parentd0adbb5b7da2d1238fdf1a30734a001a0103aab0 (diff)
downloadexternal_llvm-c4b1abd81e4de314880110c5d58917d4747fb978.zip
external_llvm-c4b1abd81e4de314880110c5d58917d4747fb978.tar.gz
external_llvm-c4b1abd81e4de314880110c5d58917d4747fb978.tar.bz2
Actually source file has already been uniquified into an id during isel. Eliminate the StringMap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFunction.h')
-rw-r--r--include/llvm/CodeGen/MachineFunction.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h
index 1397b84..4fa70fc 100644
--- a/include/llvm/CodeGen/MachineFunction.h
+++ b/include/llvm/CodeGen/MachineFunction.h
@@ -312,9 +312,9 @@ public:
//
/// lookUpDebugLocId - Look up the DebugLocTuple index with the given
- /// filename, line, and column. It may add a new filename and / or
+ /// source file, line, and column. It may add a new filename and / or
/// a new DebugLocTuple.
- unsigned lookUpDebugLocId(const char *Filename, unsigned Line, unsigned Col);
+ unsigned lookUpDebugLocId(unsigned Src, unsigned Line, unsigned Col);
};
//===--------------------------------------------------------------------===//