[llvm] r290602 - Attempt to fix build bot after r290597

Eugene Leviant via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 27 02:24:58 PST 2016


Author: evgeny777
Date: Tue Dec 27 04:24:58 2016
New Revision: 290602

URL: http://llvm.org/viewvc/llvm-project?rev=290602&view=rev
Log:
Attempt to fix build bot after r290597

Modified:
    llvm/trunk/lib/Support/Debug.cpp

Modified: llvm/trunk/lib/Support/Debug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Debug.cpp?rev=290602&r1=290601&r2=290602&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Debug.cpp (original)
+++ llvm/trunk/lib/Support/Debug.cpp Tue Dec 27 04:24:58 2016
@@ -32,6 +32,7 @@
 
 #undef isCurrentDebugType
 #undef setCurrentDebugType
+#undef setCurrentDebugTypes
 
 using namespace llvm;
 
@@ -62,6 +63,8 @@ bool isCurrentDebugType(const char *Debu
 /// 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);
 }




More information about the llvm-commits mailing list