diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-03-28 22:34:41 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-03-28 22:34:41 +0000 |
commit | eb95f65f1142d1aac9cac94fb4ff46b96aedcb3a (patch) | |
tree | af7cdddc9c0360c5c06ec0a24e1b5fdbd3bbad23 | |
parent | 30b9e322e159df8eaabb5b194cec6e11ba99c261 (diff) |
Tidy up. Whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153609 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/Debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Support/Debug.h b/include/llvm/Support/Debug.h index 8651fc1abe..e72327271f 100644 --- a/include/llvm/Support/Debug.h +++ b/include/llvm/Support/Debug.h @@ -35,14 +35,14 @@ class raw_ostream; #ifndef DEBUG_TYPE #define DEBUG_TYPE "" #endif - + #ifndef NDEBUG /// 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. /// extern bool DebugFlag; - + /// isCurrentDebugType - Return true if the specified string is the debug type /// specified on the command line, or if none was specified on the command line /// with the -debug-only=X option. @@ -54,7 +54,7 @@ bool isCurrentDebugType(const char *Type); /// debug output to be produced. /// void SetCurrentDebugType(const char *Type); - + /// DEBUG_WITH_TYPE macro - This macro should be used by passes to emit debug /// information. In the '-debug' option is specified on the commandline, and if /// this is a debug build, then the code specified as the option to the macro |