Lots of trivial changes to remove extraneous semicolons throughout ASan.

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@159128 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/asan/asan_stack.h b/lib/asan/asan_stack.h
index 101408a..35a6af2 100644
--- a/lib/asan/asan_stack.h
+++ b/lib/asan/asan_stack.h
@@ -63,7 +63,7 @@
   uptr bp = GET_CURRENT_FRAME();              \
   uptr pc = GET_CALLER_PC();                  \
   uptr local_stack;                           \
-  uptr sp = (uptr)&local_stack;
+  uptr sp = (uptr)&local_stack
 
 // Use this macro if you want to print stack trace with the current
 // function in the top frame.
@@ -71,7 +71,7 @@
   uptr bp = GET_CURRENT_FRAME();              \
   uptr pc = AsanStackTrace::GetCurrentPc();   \
   uptr local_stack;                           \
-  uptr sp = (uptr)&local_stack;
+  uptr sp = (uptr)&local_stack
 
 // Get the stack trace with the given pc and bp.
 // The pc will be in the position 0 of the resulting stack trace.
@@ -79,7 +79,7 @@
 // fast_unwind is currently unused.
 #define GET_STACK_TRACE_WITH_PC_AND_BP(max_s, pc, bp)               \
   AsanStackTrace stack;                                             \
-  stack.GetStackTrace(max_s, pc, bp);                               \
+  stack.GetStackTrace(max_s, pc, bp)
 
 // NOTE: A Rule of thumb is to retrieve stack trace in the interceptors
 // as early as possible (in functions exposed to the user), as we generally
@@ -87,7 +87,7 @@
 
 #define GET_STACK_TRACE_HERE(max_size)                        \
   GET_STACK_TRACE_WITH_PC_AND_BP(max_size,                    \
-      AsanStackTrace::GetCurrentPc(), GET_CURRENT_FRAME())    \
+      AsanStackTrace::GetCurrentPc(), GET_CURRENT_FRAME())
 
 #define GET_STACK_TRACE_HERE_FOR_MALLOC                             \
   GET_STACK_TRACE_HERE(FLAG_malloc_context_size)
@@ -99,6 +99,6 @@
   {                                              \
     GET_STACK_TRACE_HERE(kStackTraceMax);        \
     stack.PrintStack();                          \
-  }                                              \
+  }
 
 #endif  // ASAN_STACK_H