mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 23:32:58 +00:00
Qualify dwarf namespace inside llvm namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26409 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e53ceb0d4
commit
9a777a3a8e
@ -16,6 +16,8 @@
|
||||
#ifndef LLVM_SUPPORT_DWARF_H
|
||||
#define LLVM_SUPPORT_DWARF_H
|
||||
|
||||
namespace llvm {
|
||||
|
||||
namespace dwarf {
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -513,4 +515,6 @@ const char *CallFrameString(unsigned Encoding);
|
||||
|
||||
} // End of namespace dwarf
|
||||
|
||||
} // End of namespace llvm
|
||||
|
||||
#endif
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace llvm;
|
||||
using namespace dwarf;
|
||||
using namespace llvm::dwarf;
|
||||
|
||||
static cl::opt<bool>
|
||||
DwarfVerbose("dwarf-verbose", cl::Hidden,
|
||||
|
@ -15,6 +15,8 @@
|
||||
|
||||
#include <cassert>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
namespace dwarf {
|
||||
|
||||
/// TagString - Return the string for the specified tag.
|
||||
@ -568,5 +570,6 @@ const char *CallFrameString(unsigned Encoding) {
|
||||
return "";
|
||||
}
|
||||
|
||||
} // End of namespace llvm.
|
||||
} // End of namespace dwarf.
|
||||
|
||||
} // End of namespace llvm.
|
||||
|
Loading…
x
Reference in New Issue
Block a user