summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jaeheon Yi <jaeheon@google.com> 2023-10-11 21:40:52 -0700
committer Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2023-10-16 20:39:08 +0000
commita485a4414b0791a160981ea7726a5360d30b4f67 (patch)
tree59ffcd305fba17065a3801046ffa05db220502df
parentb6a52d1d104c21a84beb5404f0d36d435df84a8d (diff)
riscv64: add sig handler to CFI ignore list
Test: m check_cfi Bug: 283082047 Change-Id: Id2a907117f33ddb2bd50753d445c440afce519b4
-rwxr-xr-xtools/check_cfi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check_cfi.py b/tools/check_cfi.py
index 83ee363ba5..55b622d422 100755
--- a/tools/check_cfi.py
+++ b/tools/check_cfi.py
@@ -38,7 +38,7 @@ IGNORE : Dict[str, List[str]] = {
# Saves/restores SP in other register.
"art_quick_generic_jni_trampoline": ["arm", "i386", "x86_64"],
# Starts with non-zero offset at the start of the method.
- "art_quick_throw_null_pointer_exception_from_signal": ["arm", "aarch64", "i386", "x86_64"],
+ "art_quick_throw_null_pointer_exception_from_signal": ARCHES,
# Pops stack without static control flow past the opcode.
"nterp_op_return": ["arm", "aarch64", "i386", "x86_64", "riscv64"],
}