File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ endif()
40
40
41
41
if (OS_NAME MATCHES "Linux" )
42
42
set (ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${S390X}
43
- ${RISCV64} )
43
+ ${RISCV64} ${LOONGARCH64} )
44
44
elseif (OS_NAME MATCHES "Windows" )
45
45
set (ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} )
46
46
elseif (OS_NAME MATCHES "Android" )
Original file line number Diff line number Diff line change @@ -149,8 +149,8 @@ inline ALWAYS_INLINE uintptr_t GetPreviousInstructionPc(uintptr_t PC) {
149
149
ALWAYS_INLINE uintptr_t TracePC::GetNextInstructionPc (uintptr_t PC) {
150
150
#if defined(__mips__)
151
151
return PC + 8 ;
152
- #elif defined(__powerpc__) || defined(__sparc__) || defined(__arm__) || \
153
- defined (__aarch64__)
152
+ #elif defined(__powerpc__) || defined(__sparc__) || defined(__arm__) || \
153
+ defined (__aarch64__) || defined (__loongarch__)
154
154
return PC + 4 ;
155
155
#else
156
156
return PC + 1 ;
You can’t perform that action at this time.
0 commit comments