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 | b452d4e9e4b12892f91350974d2b6a9edd8e7c64 (patch) | |
tree | bde08997aac662f949c66eb5f50f72dc19dce040 /llvm/lib/Support/Debug.cpp | |
parent | 4634b7d4f6cb8557da5f08bf41b68be4b6bdab02 (diff) | |
download | bcm5719-llvm-b452d4e9e4b12892f91350974d2b6a9edd8e7c64.tar.gz bcm5719-llvm-b452d4e9e4b12892f91350974d2b6a9edd8e7c64.zip |
Fix minor style issues.
llvm-svn: 99414
Diffstat (limited to 'llvm/lib/Support/Debug.cpp')
-rw-r--r-- | llvm/lib/Support/Debug.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Support/Debug.cpp b/llvm/lib/Support/Debug.cpp index 82b4b8ce163..eccfa0bd072 100644 --- a/llvm/lib/Support/Debug.cpp +++ b/llvm/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() == |