From bf94c960071d338b7157ac7dee8120df50d5600f Mon Sep 17 00:00:00 2001 From: Sterling Augustine Date: Wed, 15 Apr 2020 10:42:52 -0700 Subject: [PATCH] Write ignored output to stdout, so this test runs on read-only filesystems. --- llvm/test/CodeGen/ARM/inline-asm-reserved-registers.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/ARM/inline-asm-reserved-registers.ll b/llvm/test/CodeGen/ARM/inline-asm-reserved-registers.ll index 02c86c8..002a273 100644 --- a/llvm/test/CodeGen/ARM/inline-asm-reserved-registers.ll +++ b/llvm/test/CodeGen/ARM/inline-asm-reserved-registers.ll @@ -1,4 +1,4 @@ -; RUN: not llc -mtriple thumbv6m-arm-none-eabi -frame-pointer=all %s 2>&1 | FileCheck %s --check-prefix=CHECK-ERROR +; RUN: not llc -mtriple thumbv6m-arm-none-eabi -frame-pointer=all %s -o - 2>&1 | FileCheck %s --check-prefix=CHECK-ERROR ; CHECK-ERROR: error: write to reserved register 'R7' define void @test_framepointer_output(i32 %input) { -- 2.7.4