You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
408 B
14 lines
408 B
# RUN: not llvm-mc -triple mips-unknown-linux -filetype=obj -o %t %s 2>&1 \
|
|
# RUN: | FileCheck %s
|
|
|
|
# Check that we emit an error for unsupported relocations instead of crashing.
|
|
|
|
.globl x
|
|
|
|
.data
|
|
foo:
|
|
.byte x
|
|
# CHECK: :[[@LINE-1]]:17: error: MIPS does not support one byte relocations
|
|
.byte x+1
|
|
# CHECK: :[[@LINE-1]]:17: error: MIPS does not support one byte relocations
|