[compiler-rt] [hwasan] Replace INLINE with inline
authorKamil Rytarowski <n54@gmx.com>
Thu, 17 Sep 2020 14:46:32 +0000 (16:46 +0200)
committerKamil Rytarowski <n54@gmx.com>
Thu, 17 Sep 2020 14:46:32 +0000 (16:46 +0200)
Fixes the build after landing D87562.

compiler-rt/lib/hwasan/hwasan_malloc_bisect.h

index eaf124a..7d134e8 100644 (file)
@@ -28,7 +28,7 @@ static u32 malloc_hash(StackTrace *stack, uptr orig_size) {
   return H.get();
 }
 
-static INLINE bool malloc_bisect(StackTrace *stack, uptr orig_size) {
+static inline bool malloc_bisect(StackTrace *stack, uptr orig_size) {
   uptr left = flags()->malloc_bisect_left;
   uptr right = flags()->malloc_bisect_right;
   if (LIKELY(left == 0 && right == 0))