File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
source/loader/layers/sanitizer Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ struct LocalArgsInfo {
71
71
uint64_t SizeWithRedZone = 0 ;
72
72
};
73
73
74
- constexpr std:: size_t ASAN_MAX_NUM_REPORTS = 10 ;
74
+ constexpr uint64_t ASAN_MAX_NUM_REPORTS = 10 ;
75
75
76
76
struct LaunchInfo {
77
77
uintptr_t GlobalShadowOffset = 0 ;
@@ -98,7 +98,7 @@ constexpr unsigned ASAN_SHADOW_GRANULARITY = 1ULL << ASAN_SHADOW_SCALE;
98
98
99
99
// Based on the observation, only the last 24 bits of the address of the private
100
100
// variable have changed
101
- constexpr std:: size_t ASAN_PRIVATE_SIZE = 0xffffffULL + 1 ;
101
+ constexpr uint64_t ASAN_PRIVATE_SIZE = 0xffffffULL + 1 ;
102
102
103
103
// These magic values are written to shadow for better error
104
104
// reporting.
Original file line number Diff line number Diff line change 7
7
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8
8
*
9
9
*/
10
- #include " common.hpp"
11
10
#include " llvm/DebugInfo/Symbolize/DIPrinter.h"
12
11
#include " llvm/DebugInfo/Symbolize/Symbolize.h"
13
12
#include < link.h>
You can’t perform that action at this time.
0 commit comments