From: NAKAMURA Takumi Date: Fri, 25 Jul 2014 09:54:49 +0000 (+0000) Subject: llvm/test/CodeGen/ARM/inlineasm-global.ll: Avoid specifing source file on llc. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd620a242a9729204fd06b1ab6c542aab7167719;p=platform%2Fupstream%2Fllvm.git llvm/test/CodeGen/ARM/inlineasm-global.ll: Avoid specifing source file on llc. It sometimes confuses FileCheck. Consider the case that path contains 'stmib'. :) llvm-svn: 213932 --- diff --git a/llvm/test/CodeGen/ARM/inlineasm-global.ll b/llvm/test/CodeGen/ARM/inlineasm-global.ll index d1a15e3..834624c 100644 --- a/llvm/test/CodeGen/ARM/inlineasm-global.ll +++ b/llvm/test/CodeGen/ARM/inlineasm-global.ll @@ -1,5 +1,5 @@ -; RUN: llc -march thumb -no-integrated-as %s -o - | FileCheck %s --check-prefix=THUMB -; RUN: llc -march arm -no-integrated-as %s -o - | FileCheck %s --check-prefix=ARM +; 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 ; In thumb mode, emit ".code 16" before global inline-asm instructions.