[llvm-commits] [compiler-rt] r162269 - /compiler-rt/trunk/lib/asan/asan_interface.h

Kostya Serebryany kcc at google.com
Tue Aug 21 01:24:36 PDT 2012


Author: kcc
Date: Tue Aug 21 03:24:35 2012
New Revision: 162269

URL: http://llvm.org/viewvc/llvm-project?rev=162269&view=rev
Log:
[asan] update asan-rt to match the interface change in LLVm (r162268)

Modified:
    compiler-rt/trunk/lib/asan/asan_interface.h

Modified: compiler-rt/trunk/lib/asan/asan_interface.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_interface.h?rev=162269&r1=162268&r2=162269&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_interface.h (original)
+++ compiler-rt/trunk/lib/asan/asan_interface.h Tue Aug 21 03:24:35 2012
@@ -37,7 +37,8 @@
     uptr beg;                // The address of the global.
     uptr size;               // The original size of the global.
     uptr size_with_redzone;  // The size with the redzone.
-    const char *name;          // Name as a C string.
+    const char *name;        // Name as a C string.
+    uptr has_dynamic_init;   // Non-zero if the global has dynamic initializer.
   };
 
   // These two functions should be called by the instrumented code.





More information about the llvm-commits mailing list