File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed
llvm/utils/gn/secondary/compiler-rt/lib/hwasan Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,19 @@ foreach(arch ${HWASAN_SUPPORTED_ARCH})
24
24
if (${arch} MATCHES "aarch64" )
25
25
list (APPEND HWASAN_RTL_SOURCES
26
26
hwasan_setjmp_aarch64.S
27
- hwasan_tag_mismatch_aarch64.S )
27
+ hwasan_tag_mismatch_aarch64.S
28
+ )
28
29
endif ()
29
30
if (${arch} MATCHES "riscv64" )
30
31
list (APPEND HWASAN_RTL_SOURCES
31
32
hwasan_setjmp_riscv64.S
32
- hwasan_tag_mismatch_riscv64.S )
33
+ hwasan_tag_mismatch_riscv64.S
34
+ )
33
35
endif ()
34
36
if (${arch} MATCHES "x86_64" )
35
37
list (APPEND HWASAN_RTL_SOURCES
36
- hwasan_setjmp_x86_64.S )
38
+ hwasan_setjmp_x86_64.S
39
+ )
37
40
endif ()
38
41
endforeach ()
39
42
Original file line number Diff line number Diff line change @@ -64,10 +64,16 @@ source_set("sources") {
64
64
" hwasan_type_test.cpp" ,
65
65
]
66
66
if (current_cpu == " arm64" ) {
67
- sources += [ " hwasan_setjmp_aarch64.S" ]
67
+ sources += [
68
+ " hwasan_setjmp_aarch64.S" ,
69
+ " hwasan_tag_mismatch_aarch64.S" ,
70
+ ]
68
71
}
69
72
if (current_cpu == " riscv64" ) {
70
- sources += [ " hwasan_setjmp_riscv64.S" ]
73
+ sources += [
74
+ " hwasan_setjmp_riscv64.S" ,
75
+ " hwasan_tag_mismatch_riscv64.S" ,
76
+ ]
71
77
}
72
78
if (current_cpu == " x64" ) {
73
79
sources += [ " hwasan_setjmp_x86_64.S" ]
You can’t perform that action at this time.
0 commit comments