[compiler-rt] r264014 - Wrap 81 character line to satisfy linter

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 21 17:53:04 PDT 2016


Author: rnk
Date: Mon Mar 21 19:53:04 2016
New Revision: 264014

URL: http://llvm.org/viewvc/llvm-project?rev=264014&view=rev
Log:
Wrap 81 character line to satisfy linter

Modified:
    compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc

Modified: compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc?rev=264014&r1=264013&r2=264014&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc Mon Mar 21 19:53:04 2016
@@ -93,7 +93,8 @@ static int SetSEHFilter() { return __asa
 
 // Unfortunately, putting a pointer to __asan_set_seh_filter into
 // __asan_intercept_seh gets optimized out, so we have to use an extra function.
-__declspec(allocate(".CRT$XCAB")) int (*__asan_seh_interceptor)() = SetSEHFilter;
+__declspec(allocate(".CRT$XCAB")) int (*__asan_seh_interceptor)() =
+    SetSEHFilter;
 }
 
 #endif // ASAN_DYNAMIC_RUNTIME_THUNK




More information about the llvm-commits mailing list