diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-15 17:08:50 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-15 17:08:50 +0000 |
commit | b29cda9b3c39fbbd53db44dbc5075d5445a98200 (patch) | |
tree | b858a95e9c0cad74c71661ecada32e5fdbd6041a /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 345356ee9a30b0d7653219e1d97e60c5cd116241 (diff) | |
download | bcm5719-llvm-b29cda9b3c39fbbd53db44dbc5075d5445a98200.tar.gz bcm5719-llvm-b29cda9b3c39fbbd53db44dbc5075d5445a98200.zip |
Fix a bunch of namespace polution.
llvm-svn: 101376
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index e9f074ea307..ff69f549425 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1331,7 +1331,7 @@ DbgScope *DwarfDebug::getOrCreateAbstractScope(MDNode *N) { /// isSubprogramContext - Return true if Context is either a subprogram /// or another context nested inside a subprogram. -bool isSubprogramContext(MDNode *Context) { +static bool isSubprogramContext(MDNode *Context) { if (!Context) return false; DIDescriptor D(Context); |