diff options
Diffstat (limited to 'llvm/test/MC/Mips/reloc-directive-bad.s')
-rw-r--r-- | llvm/test/MC/Mips/reloc-directive-bad.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/MC/Mips/reloc-directive-bad.s b/llvm/test/MC/Mips/reloc-directive-bad.s index bb056b7..f09a73b 100644 --- a/llvm/test/MC/Mips/reloc-directive-bad.s +++ b/llvm/test/MC/Mips/reloc-directive-bad.s @@ -2,6 +2,6 @@ # RUN: -target-abi=o32 2>&1 | FileCheck %s .text foo: - .reloc 0, R_MIPS_32, .text+.text # CHECK: :[[@LINE]]:23: error: expression must be relocatable - .reloc 0, 0, R_MIPS_32, .text # CHECK: :[[@LINE]]:12: error: expected relocation name + .reloc ., R_MIPS_32, .text+.text # CHECK: :[[@LINE]]:23: error: expression must be relocatable + .reloc ., 0, R_MIPS_32, .text # CHECK: :[[@LINE]]:12: error: expected relocation name nop |