[InstCombine] Signed saturation patterns
[llvm-core.git] / test / MC / MSP430 / msp430-separator.s
blob498e86e1df3b256a8d894b1cf318e84cbe520bb8
1 ; RUN: llvm-mc -triple msp430 < %s | FileCheck %s
3 ; MSP430 supports multiple assembly statements on the same line
4 ; separated by a '{' character.
6 ; Check that the '{' is recognized as a line separator and
7 ; multiple statements correctly parsed.
9 _foo:
10 ; CHECK: foo
11 ; CHECK: add r10, r11
12 ; CHECK-NEXT: call r11
13 ; CHECK-NEXT: mov r11, 2(r1)
14 add r10, r11 { call r11 { mov r11, 2(r1)
15 ret