tests/tcg/s390x: Use a different PCRel32 notation in branch-relative-long.c
authorIlya Leoshkevich <iii@linux.ibm.com>
Mon, 2 May 2022 16:48:30 +0000 (18:48 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 4 May 2022 06:47:19 +0000 (08:47 +0200)
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>
tests/tcg/s390x/branch-relative-long.c

index 94219afcadc329e313e38ad1ba3fb2d9e65e502a..8ce9f1c2e5921dd2f34dc5613d50f687a2fc8c2a 100644 (file)
@@ -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;