brintos

brintos / llvm-project-archived public Read only

0
0
Text · 690 B · 90b2ce3 Raw
18 lines · plain
1# RUN: not llvm-mc -filetype=obj %s -triple=riscv32 -o /dev/null 2>&1 \2# RUN:     | FileCheck %s3# RUN: not llvm-mc -filetype=obj %s -triple=riscv64 -o /dev/null 2>&1 \4# RUN:     | FileCheck %s5 6.byte foo   # CHECK: [[@LINE]]:7: error: 1-byte data relocations not supported7.2byte foo  # CHECK: [[@LINE]]:8: error: 2-byte data relocations not supported8 9# Test that using li with a symbol difference constant rejects values that10# cannot fit in a signed 12-bit integer.11.Lbuf: .skip (1 << 11)12.Lbuf_end:13.equ CONST, .Lbuf_end - .Lbuf14# CHECK: error: operand must be a constant 12-bit integer15li a0, CONST16# CHECK: error: operand must be a constant 12-bit integer17li a0, .Lbuf_end - .Lbuf18