[compiler-rt] r220683 - Unbreak the darwin build.

Adrian Prantl aprantl at apple.com
Mon Oct 27 09:21:00 PDT 2014


Author: adrian
Date: Mon Oct 27 11:20:59 2014
New Revision: 220683

URL: http://llvm.org/viewvc/llvm-project?rev=220683&view=rev
Log:
Unbreak the darwin build.
Patch by Ismail Pazarbasi!

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

Modified: compiler-rt/trunk/lib/asan/asan_mac.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_mac.cc?rev=220683&r1=220682&r2=220683&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_mac.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_mac.cc Mon Oct 27 11:20:59 2014
@@ -297,7 +297,7 @@ using namespace __asan;  // NOLINT
 // The caller retains control of the allocated context.
 extern "C"
 asan_block_context_t *alloc_asan_context(void *ctxt, dispatch_function_t func,
-                                         StackTrace *stack) {
+                                         BufferedStackTrace *stack) {
   asan_block_context_t *asan_ctxt =
       (asan_block_context_t*) asan_malloc(sizeof(asan_block_context_t), stack);
   asan_ctxt->block = ctxt;





More information about the llvm-commits mailing list