[llvm] 1e62a35 - [RISCV] Test %hi(absolute_symbol)

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 28 23:54:05 PDT 2025


Author: Fangrui Song
Date: 2025-03-28T23:54:01-07:00
New Revision: 1e62a3505fa0d0ef1f706549ce62f645f3091cfa

URL: https://github.com/llvm/llvm-project/commit/1e62a3505fa0d0ef1f706549ce62f645f3091cfa
DIFF: https://github.com/llvm/llvm-project/commit/1e62a3505fa0d0ef1f706549ce62f645f3091cfa.diff

LOG: [RISCV] Test %hi(absolute_symbol)

Added: 
    

Modified: 
    llvm/test/MC/RISCV/linker-relaxation.s

Removed: 
    


################################################################################
diff  --git a/llvm/test/MC/RISCV/linker-relaxation.s b/llvm/test/MC/RISCV/linker-relaxation.s
index ca1796f99cfbd..f9bffb697885f 100644
--- a/llvm/test/MC/RISCV/linker-relaxation.s
+++ b/llvm/test/MC/RISCV/linker-relaxation.s
@@ -137,6 +137,19 @@ sb t1, %pcrel_lo(2b)(a2)
 # RELAX-FIXUP: fixup A - offset: 0, value: %pcrel_lo(.Ltmp1), kind: fixup_riscv_pcrel_lo12_s
 # RELAX-FIXUP: fixup B - offset: 0, value: 0, kind: fixup_riscv_relax
 
+lui t2, %hi(abs)
+# NORELAX-RELOC-NOT: R_RISCV_
+# RELAX-RELOC:      R_RISCV_HI20 - 0x12345
+# RELAX-RELOC-NEXT: R_RISCV_RELAX - 0x0
+# RELAX-FIXUP:      fixup A - offset: 0, value: %hi(abs), kind: fixup_riscv_hi20
+# RELAX-FIXUP:      fixup B - offset: 0, value: 0, kind: fixup_riscv_relax
+
+.set abs, 0x12345
+
+lui t3, %hi(abs)
+# RELAX-RELOC-NOT:  R_RISCV_
+# RELAX-FIXUP-NOT:  fixup
+
 # Check that a relocation is not emitted for a symbol 
diff erence which has
 # been folded to a fixup with an absolute value. This can happen when a
 # 
diff erence expression refers to two symbols, at least one of which is


        


More information about the llvm-commits mailing list