16 lines · plain
1; RUN: llvm-mc -triple msp430 < %s | FileCheck %s2 3; MSP430 supports multiple assembly statements on the same line4; separated by a '{' character.5 6; Check that the '{' is recognized as a line separator and7; multiple statements correctly parsed.8 9_foo:10; CHECK: foo11; CHECK: add r10, r1112; CHECK-NEXT: call r1113; CHECK-NEXT: mov r11, 2(r1)14add r10, r11 { call r11 { mov r11, 2(r1)15ret16