projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72c5fee
)
[compiler-rt] [hwasan] Replace INLINE with inline
author
Kamil Rytarowski
<n54@gmx.com>
Thu, 17 Sep 2020 14:46:32 +0000
(16:46 +0200)
committer
Kamil 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
patch
|
blob
|
history
diff --git
a/compiler-rt/lib/hwasan/hwasan_malloc_bisect.h
b/compiler-rt/lib/hwasan/hwasan_malloc_bisect.h
index
eaf124a
..
7d134e8
100644
(file)
--- a/
compiler-rt/lib/hwasan/hwasan_malloc_bisect.h
+++ b/
compiler-rt/lib/hwasan/hwasan_malloc_bisect.h
@@
-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))