mirror of https://github.com/google/oss-fuzz.git
bad_build_check: also look for call on x86_64 (#5159)
It should make the script compatible with binutils-2.36.1 (where "callq" is no longer present in the output of objdump) It was spotted in https://github.com/systemd/systemd/pull/18528
This commit is contained in:
parent
281914ea8f
commit
4af2cfe3cf
|
@ -312,7 +312,7 @@ function check_mixed_sanitizers {
|
||||||
else
|
else
|
||||||
case $(uname -m) in
|
case $(uname -m) in
|
||||||
x86_64)
|
x86_64)
|
||||||
CALL_INSN="callq\s+[0-9a-f]+\s+<"
|
CALL_INSN="callq?\s+[0-9a-f]+\s+<"
|
||||||
;;
|
;;
|
||||||
aarch64)
|
aarch64)
|
||||||
CALL_INSN="bl\s+[0-9a-f]+\s+<"
|
CALL_INSN="bl\s+[0-9a-f]+\s+<"
|
||||||
|
|
Loading…
Reference in New Issue