1# RUN: not llvm-mc %s -arch=mips64 -mcpu=mips3 -target-abi n64 2>&1 | \ 2# RUN: FileCheck %s 3 4 .text 5 .option pic2 6 dla $5, symbol+0x8000 7 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 8 dla $5, symbol-0x8001 9 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 10 dla $5, symbol+0x8000($6) 11 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 12 dla $5, symbol-0x8001($6) 13 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 14 dla $25, symbol+0x8000 15 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 16 dla $25, symbol-0x8001 17 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 18 dla $25, symbol+0x8000($6) 19 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 20 dla $25, symbol-0x8001($6) 21 # CHECK: :[[@LINE-1]]:3: error: macro instruction uses large offset, which is not currently supported 22