summaryrefslogtreecommitdiff
path: root/include/Support/Debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Support/Debug.h')
-rw-r--r--include/Support/Debug.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Support/Debug.h b/include/Support/Debug.h
index 8cba05771f..66a208811a 100644
--- a/include/Support/Debug.h
+++ b/include/Support/Debug.h
@@ -26,6 +26,8 @@
#ifndef SUPPORT_DEBUG_H
#define SUPPORT_DEBUG_H
+namespace llvm {
+
// DebugFlag - This boolean is set to true if the '-debug' command line option
// is specified. This should probably not be referenced directly, instead, use
// the DEBUG macro below.
@@ -57,4 +59,6 @@ bool isCurrentDebugType(const char *Type);
do { if (DebugFlag && isCurrentDebugType(DEBUG_TYPE)) { X; } } while (0)
#endif
+} // End llvm namespace
+
#endif