diff options
author | Eugene Leviant <eleviant@accesssoftek.com> | 2016-12-27 10:24:58 +0000 |
---|---|---|
committer | Eugene Leviant <eleviant@accesssoftek.com> | 2016-12-27 10:24:58 +0000 |
commit | 687d4024b59cd0cb39c278ad9d1b239c3afa8599 (patch) | |
tree | f07af1bcec1372e0b16716097140f2327192a083 /llvm/lib/Support/Debug.cpp | |
parent | 81c8edaf5c9310316fb28bbf7a80e199729b7050 (diff) | |
download | bcm5719-llvm-687d4024b59cd0cb39c278ad9d1b239c3afa8599.tar.gz bcm5719-llvm-687d4024b59cd0cb39c278ad9d1b239c3afa8599.zip |
Attempt to fix build bot after r290597
llvm-svn: 290602
Diffstat (limited to 'llvm/lib/Support/Debug.cpp')
-rw-r--r-- | llvm/lib/Support/Debug.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Support/Debug.cpp b/llvm/lib/Support/Debug.cpp index a78acf0f69c..9132911479a 100644 --- a/llvm/lib/Support/Debug.cpp +++ b/llvm/lib/Support/Debug.cpp @@ -32,6 +32,7 @@ #undef isCurrentDebugType #undef setCurrentDebugType +#undef setCurrentDebugTypes using namespace llvm; @@ -62,6 +63,8 @@ bool isCurrentDebugType(const char *DebugType) { /// option were specified. Note that DebugFlag also needs to be set to true for /// debug output to be produced. /// +void setCurrentDebugTypes(const char **Types, unsigned Count); + void setCurrentDebugType(const char *Type) { setCurrentDebugTypes(&Type, 1); } |