[llvm] r201345 - Add triples to try to fix the windows bots.

Rafael Espindola rafael.espindola at gmail.com
Thu Feb 13 08:49:47 PST 2014


Author: rafael
Date: Thu Feb 13 10:49:47 2014
New Revision: 201345

URL: http://llvm.org/viewvc/llvm-project?rev=201345&view=rev
Log:
Add triples to try to fix the windows bots.

Modified:
    llvm/trunk/test/CodeGen/ARM/mature-mc-support.ll
    llvm/trunk/test/CodeGen/Thumb/mature-mc-support.ll

Modified: llvm/trunk/test/CodeGen/ARM/mature-mc-support.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/mature-mc-support.ll?rev=201345&r1=201344&r2=201345&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/mature-mc-support.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/mature-mc-support.ll Thu Feb 13 10:49:47 2014
@@ -1,10 +1,10 @@
 ; Test that inline assembly is parsed by the MC layer when MC support is mature
 ; (even when the output is assembly).
 
-; RUN: not llc -march=arm < %s > /dev/null 2> %t1
+; RUN: not llc -mtriple=arm-pc-linux < %s > /dev/null 2> %t1
 ; RUN: FileCheck %s < %t1
 
-; RUN: not llc -march=arm -filetype=obj < %s > /dev/null 2> %t2
+; RUN: not llc -mtriple=arm-pc-linux -filetype=obj < %s > /dev/null 2> %t2
 ; RUN: FileCheck %s < %t2
 
 module asm "	.this_directive_is_very_unlikely_to_exist"

Modified: llvm/trunk/test/CodeGen/Thumb/mature-mc-support.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Thumb/mature-mc-support.ll?rev=201345&r1=201344&r2=201345&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Thumb/mature-mc-support.ll (original)
+++ llvm/trunk/test/CodeGen/Thumb/mature-mc-support.ll Thu Feb 13 10:49:47 2014
@@ -1,10 +1,10 @@
 ; Test that inline assembly is parsed by the MC layer when MC support is mature
 ; (even when the output is assembly).
 
-; RUN: not llc -march=thumb < %s > /dev/null 2> %t1
+; RUN: not llc -mtriple=thumb-pc-linux < %s > /dev/null 2> %t1
 ; RUN: FileCheck %s < %t1
 
-; RUN: not llc -march=thumb -filetype=obj < %s > /dev/null 2> %t2
+; RUN: not llc -mtriple=thumb-pc-linux -filetype=obj < %s > /dev/null 2> %t2
 ; RUN: FileCheck %s < %t2
 
 module asm "	.this_directive_is_very_unlikely_to_exist"





More information about the llvm-commits mailing list