diff options
| author | Ilya Leoshkevich <iii@linux.ibm.com> | 2022-05-02 18:48:30 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2022-05-04 08:47:19 +0200 |
| commit | 0c5c4d5b3c1cb594e808dd4120cc56ee28fa31dd (patch) | |
| tree | cc759504a3b8c2b2b0453e581bd06465141b6f7c | |
| parent | 9992f57978b8badb9d95f0eb601c7379f786f76c (diff) | |
| download | focaccia-qemu-0c5c4d5b3c1cb594e808dd4120cc56ee28fa31dd.tar.gz focaccia-qemu-0c5c4d5b3c1cb594e808dd4120cc56ee28fa31dd.zip | |
tests/tcg/s390x: Use a different PCRel32 notation in branch-relative-long.c
Binutils >=2.37 and Clang do not accept (. - 0x100000000) PCRel32 constants. While this looks like a bug that needs fixing, use a different notation (-0x100000000) as a workaround. Reported-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Message-Id: <20220502164830.1622191-1-iii@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
| -rw-r--r-- | tests/tcg/s390x/branch-relative-long.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tcg/s390x/branch-relative-long.c b/tests/tcg/s390x/branch-relative-long.c index 94219afcad..8ce9f1c2e5 100644 --- a/tests/tcg/s390x/branch-relative-long.c +++ b/tests/tcg/s390x/branch-relative-long.c @@ -13,8 +13,8 @@ #_name "_end:\n"); DEFINE_ASM(br_r14, "br %r14"); -DEFINE_ASM(brasl_r0, "brasl %r0,.-0x100000000"); -DEFINE_ASM(brcl_0xf, "brcl 0xf,.-0x100000000"); +DEFINE_ASM(brasl_r0, "brasl %r0,-0x100000000"); +DEFINE_ASM(brcl_0xf, "brcl 0xf,-0x100000000"); struct test { const char *code; |