[PATCH] D56787: [MSP430] Set UseIntegratedAssembler

Kristina Bessonova via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 25 06:52:17 PST 2019


krisb updated this revision to Diff 183534.
krisb added a comment.

Fixed broken test.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D56787/new/

https://reviews.llvm.org/D56787

Files:
  lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
  test/CodeGen/MSP430/mult-alt-generic-msp430.ll


Index: test/CodeGen/MSP430/mult-alt-generic-msp430.ll
===================================================================
--- test/CodeGen/MSP430/mult-alt-generic-msp430.ll
+++ test/CodeGen/MSP430/mult-alt-generic-msp430.ll
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=msp430
+; RUN: llc < %s -march=msp430 -no-integrated-as
 ; ModuleID = 'mult-alt-generic.c'
 target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"
 target triple = "msp430"
Index: lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
===================================================================
--- lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
+++ lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
@@ -23,4 +23,5 @@
 
   AlignmentIsInBytes = false;
   UsesELFSectionDirectiveForBSS = true;
+  UseIntegratedAssembler = true;
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D56787.183534.patch
Type: text/x-patch
Size: 815 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190125/46e2d403/attachment.bin>


More information about the llvm-commits mailing list