[llvm] r294496 - Fix inline-asm-diags.ll on Windows, give it a triple to avoid WoA thumb confusion

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 8 10:17:22 PST 2017


Author: rnk
Date: Wed Feb  8 12:17:21 2017
New Revision: 294496

URL: http://llvm.org/viewvc/llvm-project?rev=294496&view=rev
Log:
Fix inline-asm-diags.ll on Windows, give it a triple to avoid WoA thumb confusion

Modified:
    llvm/trunk/test/MC/ARM/inline-asm-diags.ll

Modified: llvm/trunk/test/MC/ARM/inline-asm-diags.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/ARM/inline-asm-diags.ll?rev=294496&r1=294495&r2=294496&view=diff
==============================================================================
--- llvm/trunk/test/MC/ARM/inline-asm-diags.ll (original)
+++ llvm/trunk/test/MC/ARM/inline-asm-diags.ll Wed Feb  8 12:17:21 2017
@@ -1,4 +1,4 @@
-; RUN: not llc -march=arm -filetype=obj < %s 2>&1 -o /dev/null | FileCheck %s
+; RUN: not llc -mtriple=armv7-linux -filetype=obj < %s 2>&1 -o /dev/null | FileCheck %s
 
 module asm ".word 0x10"
 module asm ".word -bar"




More information about the llvm-commits mailing list