aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/base-images
diff options
context:
space:
mode:
authorGravatar Evgeny Vereshchagin <evvers@ya.ru>2021-02-10 20:43:18 +0300
committerGravatar GitHub <noreply@github.com>2021-02-10 09:43:18 -0800
commit4af2cfe3cf4a34ab905f1fbef33f2391a715adcf (patch)
tree630a23a3c0f0241786825f3d73a85ddf72f89516 /infra/base-images
parent281914ea8fc2576bbc5b403d3ee10d14f9e5d9ad (diff)
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
Diffstat (limited to 'infra/base-images')
-rwxr-xr-xinfra/base-images/base-runner/bad_build_check2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/base-images/base-runner/bad_build_check b/infra/base-images/base-runner/bad_build_check
index a57a4825..4990f86d 100755
--- a/infra/base-images/base-runner/bad_build_check
+++ b/infra/base-images/base-runner/bad_build_check
@@ -312,7 +312,7 @@ function check_mixed_sanitizers {
else
case $(uname -m) in
x86_64)
- CALL_INSN="callq\s+[0-9a-f]+\s+<"
+ CALL_INSN="callq?\s+[0-9a-f]+\s+<"
;;
aarch64)
CALL_INSN="bl\s+[0-9a-f]+\s+<"