diff options
author | Devang Patel <dpatel@apple.com> | 2009-09-29 18:40:58 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-09-29 18:40:58 +0000 |
commit | aaf012ebb492482ba3626e4129140713cd7836b7 (patch) | |
tree | a8b8f8f8ef75c6473e5b19d7f4f8b955af86052a /lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | e4002bc8194a36ff425f37829d6fb04a56ef1358 (diff) | |
download | external_llvm-aaf012ebb492482ba3626e4129140713cd7836b7.tar.gz external_llvm-aaf012ebb492482ba3626e4129140713cd7836b7.tar.bz2 external_llvm-aaf012ebb492482ba3626e4129140713cd7836b7.zip |
Remove std::string uses from DebugInfo interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index d312eed812..f582f9b829 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -450,8 +450,8 @@ class VISIBILITY_HIDDEN DwarfDebug : public Dwarf { /// source file names. If none currently exists, create a new id and insert it /// in the SourceIds map. This can update DirectoryNames and SourceFileNames maps /// as well. - unsigned GetOrCreateSourceID(const std::string &DirName, - const std::string &FileName); + unsigned GetOrCreateSourceID(const char *DirName, + const char *FileName); void ConstructCompileUnit(MDNode *N); |