[llvm] r295895 - [AVR] Disable integrated assembler for a few tests

Dylan McKay via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 22 14:41:13 PST 2017


Author: dylanmckay
Date: Wed Feb 22 16:41:13 2017
New Revision: 295895

URL: http://llvm.org/viewvc/llvm-project?rev=295895&view=rev
Log:
[AVR] Disable integrated assembler for a few tests

Fixes the build.

Modified:
    llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm.ll
    llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm2.ll
    llvm/trunk/test/CodeGen/AVR/inline-asm/multibyte.ll

Modified: llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm.ll?rev=295895&r1=295894&r2=295895&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm.ll (original)
+++ llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm.ll Wed Feb 22 16:41:13 2017
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=avr -mattr=movw | FileCheck %s
+; RUN: llc < %s -march=avr -mattr=movw -no-integrated-as | FileCheck %s
 
 ; CHECK-LABEL: no_operands:
 define void @no_operands() {

Modified: llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm2.ll?rev=295895&r1=295894&r2=295895&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm2.ll (original)
+++ llvm/trunk/test/CodeGen/AVR/inline-asm/inline-asm2.ll Wed Feb 22 16:41:13 2017
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=avr | FileCheck %s
+; RUN: llc < %s -march=avr -no-integrated-as | FileCheck %s
 
 ; CHECK-LABEL: foo
 define void @foo(i16 %a) {

Modified: llvm/trunk/test/CodeGen/AVR/inline-asm/multibyte.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/inline-asm/multibyte.ll?rev=295895&r1=295894&r2=295895&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/inline-asm/multibyte.ll (original)
+++ llvm/trunk/test/CodeGen/AVR/inline-asm/multibyte.ll Wed Feb 22 16:41:13 2017
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=avr | FileCheck %s
+; RUN: llc < %s -march=avr -no-integrated-as | FileCheck %s
 ; XFAIL: *
 
 ; Multibyte references




More information about the llvm-commits mailing list