From c27d6a72fce39cef0f8b8b89c5327a52379f4de7 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 25 Jul 2014 09:54:49 +0000 Subject: [PATCH] llvm/test/CodeGen/ARM/inlineasm-global.ll: Avoid specifing source file on llc. It sometimes confuses FileCheck. Consider the case that path contains 'stmib'. :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213932 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/ARM/inlineasm-global.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/ARM/inlineasm-global.ll b/test/CodeGen/ARM/inlineasm-global.ll index d1a15e393a1..834624c28fa 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 -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.