1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/MC/AsmParser/expr_symbol_modifiers.s
Daniel Dunbar a43c86b354 MC/AsmParser: Add support for 'a + 4@GOTPCREL' and friends, by reconsing the
expression to include the modifier.
 - Gross, but this a corner case we don't expect to see often in practice, but
   it is worth accepting.
 - Also improves diagnostics on invalid modifiers.

llvm-svn: 114154
2010-09-17 02:47:07 +00:00

15 lines
438 B
ArmAsm

// RUN: not llvm-mc -triple x86_64-unknown-unknown %s > %t 2> %t.err
// RUN: FileCheck < %t %s
// RUN: FileCheck -check-prefix=CHECK-STDERR < %t.err %s
// CHECK: .long 1
.long 1
// CHECK-STDERR: invalid modifier 'GOTPCREL' (no symbols present)
.long 10 + 4@GOTPCREL
// CHECK: .long a@GOTPCREL+4
.long a + 4@GOTPCREL
// CHECK: .long a@GOTPCREL+b@GOTPCREL
.long (a + b)@GOTPCREL
// CHECK: .long (10+b@GOTPCREL)+4
.long 10 + b + 4@GOTPCREL