From: NAKAMURA Takumi Date: Fri, 25 Jul 2014 09:55:01 +0000 (+0000) Subject: llvm/test/CodeGen/ARM/inlineasm-global.ll: Add explicit triple to appease targeting... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c81927943719efbb8d9a305186e67adfb04d30aa;p=oota-llvm.git llvm/test/CodeGen/ARM/inlineasm-global.ll: Add explicit triple to appease targeting *-win32. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213933 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/ARM/inlineasm-global.ll b/test/CodeGen/ARM/inlineasm-global.ll index 834624c28fa..fd210f42092 100644 --- a/test/CodeGen/ARM/inlineasm-global.ll +++ b/test/CodeGen/ARM/inlineasm-global.ll @@ -1,5 +1,5 @@ -; RUN: llc -march thumb -no-integrated-as < %s | FileCheck %s --check-prefix=THUMB -; RUN: llc -march arm -no-integrated-as < %s | FileCheck %s --check-prefix=ARM +; RUN: llc -mtriple=thumb-unknown-unknown -no-integrated-as < %s | FileCheck %s --check-prefix=THUMB +; RUN: llc -mtriple=arm-unknown-unknown -no-integrated-as < %s | FileCheck %s --check-prefix=ARM ; In thumb mode, emit ".code 16" before global inline-asm instructions.