diff options
author | Xerxes Ranby <xerxes@zafena.se> | 2009-11-09 14:50:34 +0000 |
---|---|---|
committer | Xerxes Ranby <xerxes@zafena.se> | 2009-11-09 14:50:34 +0000 |
commit | 7c16a89ebf704394ad7c1002d1141d6981425c99 (patch) | |
tree | 2d96d8051391abb2e3f42db67469b6e969e32ba0 /llvm/lib/Support/Debug.cpp | |
parent | 8dd7c54a42f278a5525bc3e315cdf1afb8e15725 (diff) | |
download | bcm5719-llvm-7c16a89ebf704394ad7c1002d1141d6981425c99.tar.gz bcm5719-llvm-7c16a89ebf704394ad7c1002d1141d6981425c99.zip |
Make lib/Support/Debug.cpp SetCurrentDebugType implementation part of llvm namespace to match function declaration in Debug.h.
llvm-svn: 86544
Diffstat (limited to 'llvm/lib/Support/Debug.cpp')
-rw-r--r-- | llvm/lib/Support/Debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Debug.cpp b/llvm/lib/Support/Debug.cpp index d4954b6e40b..50abe0164ac 100644 --- a/llvm/lib/Support/Debug.cpp +++ b/llvm/lib/Support/Debug.cpp @@ -62,7 +62,7 @@ bool llvm::isCurrentDebugType(const char *DebugType) { /// option were specified. Note that DebugFlag also needs to be set to true for /// debug output to be produced. /// -void SetCurrentDebugType(const char *Type) { +void llvm::SetCurrentDebugType(const char *Type) { CurrentDebugType = Type; } |