[compiler-rt] r326876 - Attempt to appease buildbots

George Burgess IV via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 6 23:36:23 PST 2018


Author: gbiv
Date: Tue Mar  6 23:36:23 2018
New Revision: 326876

URL: http://llvm.org/viewvc/llvm-project?rev=326876&view=rev
Log:
Attempt to appease buildbots

I can't reproduce this build error locally, but it appears
straightforward enough to fix. r326851 renamed two of the params of this
interceptor, but apparently to update their use here.

Failure:
http://lab.llvm.org:8011/builders/clang-cmake-aarch64-full/builds/4569

Modified:
    compiler-rt/trunk/lib/hwasan/hwasan_interceptors.cc

Modified: compiler-rt/trunk/lib/hwasan/hwasan_interceptors.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/hwasan/hwasan_interceptors.cc?rev=326876&r1=326875&r2=326876&view=diff
==============================================================================
--- compiler-rt/trunk/lib/hwasan/hwasan_interceptors.cc (original)
+++ compiler-rt/trunk/lib/hwasan/hwasan_interceptors.cc Tue Mar  6 23:36:23 2018
@@ -275,7 +275,7 @@ static void *mmap_interceptor(Mmap real_
       addr = nullptr;
     }
   }
-  return real_mmap(addr, length, prot, flags, fd, offset);
+  return real_mmap(addr, sz, prot, flags, fd, off);
 }
 
 extern "C" int pthread_attr_init(void *attr);




More information about the llvm-commits mailing list