]> granicus.if.org Git - llvm/commitdiff
[MSP430] Recognize '{' as a line separator
authorAnton Korobeynikov <anton@korobeynikov.info>
Tue, 15 Jan 2019 20:10:46 +0000 (20:10 +0000)
committerAnton Korobeynikov <anton@korobeynikov.info>
Tue, 15 Jan 2019 20:10:46 +0000 (20:10 +0000)
msp430-as supports multiple assembly statements on the same line
separated by a '{' character.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351233 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
test/MC/MSP430/msp430-separator.s [new file with mode: 0644]

index 82e6731ecd7829c862956936358e5a422f53c572..36e9a9c310753228d094e7ad4fda25976796d174 100644 (file)
@@ -20,6 +20,7 @@ MSP430MCAsmInfo::MSP430MCAsmInfo(const Triple &TT) {
   CodePointerSize = CalleeSaveStackSlotSize = 2;
 
   CommentString = ";";
+  SeparatorString = "{";
 
   AlignmentIsInBytes = false;
   UsesELFSectionDirectiveForBSS = true;
diff --git a/test/MC/MSP430/msp430-separator.s b/test/MC/MSP430/msp430-separator.s
new file mode 100644 (file)
index 0000000..498e86e
--- /dev/null
@@ -0,0 +1,15 @@
+; RUN: llvm-mc -triple msp430 < %s | FileCheck %s
+
+; MSP430 supports multiple assembly statements on the same line
+; separated by a '{' character.
+
+; Check that the '{' is recognized as a line separator and
+; multiple statements correctly parsed.
+
+_foo:
+; CHECK:      foo
+; CHECK:      add r10, r11
+; CHECK-NEXT: call r11
+; CHECK-NEXT: mov r11, 2(r1)
+add r10, r11 { call r11 { mov r11, 2(r1)
+ret