diff options
author | Dan Gohman <gohman@apple.com> | 2010-03-24 19:38:02 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-03-24 19:38:02 +0000 |
commit | 16e02097d283159c240996185a8b20f4ea46ccfc (patch) | |
tree | 5ec0966594df3e0b5dc7de1af399c8415b779622 /lib/Support/Debug.cpp | |
parent | 34b96f4fb369ab3b4cabcfb3d3b4bbb9e201aaf4 (diff) |
Fix minor style issues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Debug.cpp')
-rw-r--r-- | lib/Support/Debug.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Support/Debug.cpp b/lib/Support/Debug.cpp index 82b4b8ce16..eccfa0bd07 100644 --- a/lib/Support/Debug.cpp +++ b/lib/Support/Debug.cpp @@ -64,8 +64,7 @@ DebugOnly("debug-only", cl::desc("Enable a specific type of debug output"), cl::location(DebugOnlyOptLoc), cl::ValueRequired); // Signal handlers - dump debug output on termination. -static void debug_user_sig_handler(void *Cookie) -{ +static void debug_user_sig_handler(void *Cookie) { // This is a bit sneaky. Since this is under #ifndef NDEBUG, we // know that debug mode is enabled and dbgs() really is a // circular_raw_ostream. If NDEBUG is defined, then dbgs() == |