diff options
Diffstat (limited to 'test/MC/ELF/bad-expr3.s')
-rw-r--r-- | test/MC/ELF/bad-expr3.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/MC/ELF/bad-expr3.s b/test/MC/ELF/bad-expr3.s new file mode 100644 index 0000000..990167c --- /dev/null +++ b/test/MC/ELF/bad-expr3.s @@ -0,0 +1,10 @@ +// RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o /dev/null \ +// RUN: 2>&1 | FileCheck %s + +// CHECK: Cannot represent a difference across sections + + .long foo - bar + .section .zed +foo: + .section .bah +bar: |