diff options
Diffstat (limited to 'test/MC/ELF/weak-diff.s')
-rw-r--r-- | test/MC/ELF/weak-diff.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/MC/ELF/weak-diff.s b/test/MC/ELF/weak-diff.s new file mode 100644 index 0000000..d270bbb --- /dev/null +++ b/test/MC/ELF/weak-diff.s @@ -0,0 +1,12 @@ +// RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t 2>&1 | FileCheck %s + +// CHECK: error: Cannot represent a subtraction with a weak symbol + +.weak f +.weak g +f: + nop +g: + nop + +.quad g - f |