[llvm] r289324 - [AVR] Explicitly set the target in all CodeGen tests
Dylan McKay via llvm-commits
llvm-commits at lists.llvm.org
Sat Dec 10 03:23:17 PST 2016
Author: dylanmckay
Date: Sat Dec 10 05:23:16 2016
New Revision: 289324
URL: http://llvm.org/viewvc/llvm-project?rev=289324&view=rev
Log:
[AVR] Explicitly set the target in all CodeGen tests
This seems to have caused failures on the buildbot.
Modified:
llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdPtrQ.mir
llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdYQ.mir
llvm/trunk/test/CodeGen/AVR/pseudo/expand-lddw-dst-src-same.mir
llvm/trunk/test/CodeGen/AVR/store-undef.ll
Modified: llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdPtrQ.mir
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdPtrQ.mir?rev=289324&r1=289323&r2=289324&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdPtrQ.mir (original)
+++ llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdPtrQ.mir Sat Dec 10 05:23:16 2016
@@ -1,4 +1,4 @@
-# RUN: llc -O0 %s -o - 2>&1 | FileCheck %s
+# RUN: llc -O0 %s -o - 2>&1 -march=avr | FileCheck %s
# This test checks the expansion of the 16-bit 'LDDWRdPtrQ' pseudo instruction.
Modified: llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdYQ.mir
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdYQ.mir?rev=289324&r1=289323&r2=289324&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdYQ.mir (original)
+++ llvm/trunk/test/CodeGen/AVR/pseudo/LDDWRdYQ.mir Sat Dec 10 05:23:16 2016
@@ -1,4 +1,4 @@
-# RUN: llc -O0 %s -o - 2>&1 | FileCheck %s
+# RUN: llc -O0 %s -o - 2>&1 -march=avr | FileCheck %s
# This test checks the expansion of the 16-bit 'LDDWRdYQ instruction
Modified: llvm/trunk/test/CodeGen/AVR/pseudo/expand-lddw-dst-src-same.mir
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/pseudo/expand-lddw-dst-src-same.mir?rev=289324&r1=289323&r2=289324&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/pseudo/expand-lddw-dst-src-same.mir (original)
+++ llvm/trunk/test/CodeGen/AVR/pseudo/expand-lddw-dst-src-same.mir Sat Dec 10 05:23:16 2016
@@ -1,4 +1,4 @@
-# RUN: llc -O0 %s -o - 2>&1 | FileCheck %s
+# RUN: llc -O0 %s -o - 2>&1 -march=avr | FileCheck %s
# This test ensures that the pseudo expander can correctly handle the case
# where we are expanding a 16-bit LDD instruction where the source and
Modified: llvm/trunk/test/CodeGen/AVR/store-undef.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AVR/store-undef.ll?rev=289324&r1=289323&r2=289324&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AVR/store-undef.ll (original)
+++ llvm/trunk/test/CodeGen/AVR/store-undef.ll Sat Dec 10 05:23:16 2016
@@ -1,4 +1,4 @@
-; RUN: llc < %s -mattr=avr6 | FileCheck %s
+; RUN: llc < %s -march=avr | FileCheck %s
; This test checks that we can successfully lower a store
; to an undefined pointer.
More information about the llvm-commits
mailing list