summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2012-02-22 09:28:14 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2012-02-22 09:28:14 +0000
commit94602b48ee7733aa2e3935432c2daf7a654b907e (patch)
tree091d04339bc380a542018ab05d6d0363bae18a4a
parentd179ec614eebb0cb57108e9c01fd456ed82cbad6 (diff)
downloadbcm5719-llvm-94602b48ee7733aa2e3935432c2daf7a654b907e.tar.gz
bcm5719-llvm-94602b48ee7733aa2e3935432c2daf7a654b907e.zip
[ASan] Fix style + suppress 'long' lint warnings
llvm-svn: 151149
-rw-r--r--compiler-rt/lib/asan/asan_rtl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_rtl.cc b/compiler-rt/lib/asan/asan_rtl.cc
index d5cb8e240a3..fe7c3d010fb 100644
--- a/compiler-rt/lib/asan/asan_rtl.cc
+++ b/compiler-rt/lib/asan/asan_rtl.cc
@@ -517,6 +517,6 @@ void __asan_init() {
// On Windows, when using dynamic CRT (/MD), we can put a pointer
// to __asan_init into the global list of C initializers.
// See crt0dat.c in the CRT sources for the details.
- #pragma section(".CRT$XIB",long,read)
+ #pragma section(".CRT$XIB", long, read) // NOLINT
__declspec(allocate(".CRT$XIB")) void (*__asan_preinit)() = __asan_init;
#endif
OpenPOWER on IntegriCloud