[llvm] r352318 - [X86][NFC] Replace "<%s" with "< %s" in run-lines.
Roman Lebedev via llvm-commits
llvm-commits at lists.llvm.org
Sun Jan 27 07:36:35 PST 2019
Author: lebedevri
Date: Sun Jan 27 07:36:35 2019
New Revision: 352318
URL: http://llvm.org/viewvc/llvm-project?rev=352318&view=rev
Log:
[X86][NFC] Replace "<%s" with "< %s" in run-lines.
While i have no intention of actually commiting regeneration
of the check lines in these test files with update_llc_test_checks,
lack of that whitespace breaks that util, which is mildly inconvenient.
Modified:
llvm/trunk/test/CodeGen/X86/2009-10-19-atomic-cmp-eflags.ll
llvm/trunk/test/CodeGen/X86/2012-02-29-CoalescerBug.ll
llvm/trunk/test/CodeGen/X86/atom-sched.ll
llvm/trunk/test/CodeGen/X86/bss_pagealigned.ll
llvm/trunk/test/CodeGen/X86/i16lshr8pat.ll
llvm/trunk/test/CodeGen/X86/inconsistent_landingpad.ll
llvm/trunk/test/CodeGen/X86/inline-asm-ptr-cast.ll
llvm/trunk/test/CodeGen/X86/inlineasm-sched-bug.ll
Modified: llvm/trunk/test/CodeGen/X86/2009-10-19-atomic-cmp-eflags.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2009-10-19-atomic-cmp-eflags.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2009-10-19-atomic-cmp-eflags.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2009-10-19-atomic-cmp-eflags.ll Sun Jan 27 07:36:35 2019
@@ -1,4 +1,4 @@
-; RUN: llvm-as <%s | llc | FileCheck %s
+; RUN: llvm-as < %s | llc | FileCheck %s
; PR 5247
; check that cmp/test is not scheduled before the add
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
Modified: llvm/trunk/test/CodeGen/X86/2012-02-29-CoalescerBug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2012-02-29-CoalescerBug.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2012-02-29-CoalescerBug.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2012-02-29-CoalescerBug.ll Sun Jan 27 07:36:35 2019
@@ -1,4 +1,4 @@
-; RUN: llc -O1 <%s
+; RUN: llc -O1 < %s
; PR12138
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32-S128"
target triple = "i386-apple-macosx10.7.0"
Modified: llvm/trunk/test/CodeGen/X86/atom-sched.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/atom-sched.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/atom-sched.ll (original)
+++ llvm/trunk/test/CodeGen/X86/atom-sched.ll Sun Jan 27 07:36:35 2019
@@ -1,7 +1,7 @@
-; RUN: llc <%s -O2 -mcpu=atom -mtriple=i686-- -relocation-model=static | FileCheck -check-prefix=atom %s
-; RUN: llc <%s -O2 -mcpu=slm -mtriple=i686-- -relocation-model=static | FileCheck -check-prefix=slm %s
-; RUN: llc <%s -O2 -mcpu=goldmont -mtriple=i686-- -relocation-model=static | FileCheck -check-prefix=slm %s
-; RUN: llc <%s -O2 -mcpu=core2 -mtriple=i686-- -relocation-model=static | FileCheck %s
+; RUN: llc < %s -O2 -mcpu=atom -mtriple=i686-- -relocation-model=static | FileCheck -check-prefix=atom %s
+; RUN: llc < %s -O2 -mcpu=slm -mtriple=i686-- -relocation-model=static | FileCheck -check-prefix=slm %s
+; RUN: llc < %s -O2 -mcpu=goldmont -mtriple=i686-- -relocation-model=static | FileCheck -check-prefix=slm %s
+; RUN: llc < %s -O2 -mcpu=core2 -mtriple=i686-- -relocation-model=static | FileCheck %s
;
@a = common global i32 0, align 4
Modified: llvm/trunk/test/CodeGen/X86/bss_pagealigned.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/bss_pagealigned.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/bss_pagealigned.ll (original)
+++ llvm/trunk/test/CodeGen/X86/bss_pagealigned.ll Sun Jan 27 07:36:35 2019
@@ -1,4 +1,4 @@
-; RUN: llc --code-model=kernel <%s -asm-verbose=0 | FileCheck %s
+; RUN: llc --code-model=kernel < %s -asm-verbose=0 | FileCheck %s
; PR4933
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
target triple = "x86_64-unknown-linux-gnu"
Modified: llvm/trunk/test/CodeGen/X86/i16lshr8pat.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/i16lshr8pat.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/i16lshr8pat.ll (original)
+++ llvm/trunk/test/CodeGen/X86/i16lshr8pat.ll Sun Jan 27 07:36:35 2019
@@ -1,4 +1,4 @@
-; RUN: llc -stop-after expand-isel-pseudos <%s 2>&1 | FileCheck %s
+; RUN: llc -stop-after expand-isel-pseudos < %s 2>&1 | FileCheck %s
target datalayout = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128"
target triple = "i386-unknown-linux-gnu"
Modified: llvm/trunk/test/CodeGen/X86/inconsistent_landingpad.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/inconsistent_landingpad.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/inconsistent_landingpad.ll (original)
+++ llvm/trunk/test/CodeGen/X86/inconsistent_landingpad.ll Sun Jan 27 07:36:35 2019
@@ -1,4 +1,4 @@
-; RUN: not llvm-as -disable-output <%s 2>&1 | FileCheck %s
+; RUN: not llvm-as -disable-output < %s 2>&1 | FileCheck %s
define void @test() personality i32 (...)* @dummy_personality {
; CHECK: The landingpad instruction should have a consistent result type inside a function
Modified: llvm/trunk/test/CodeGen/X86/inline-asm-ptr-cast.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/inline-asm-ptr-cast.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/inline-asm-ptr-cast.ll (original)
+++ llvm/trunk/test/CodeGen/X86/inline-asm-ptr-cast.ll Sun Jan 27 07:36:35 2019
@@ -1,4 +1,4 @@
-; RUN: llc -mtriple=x86_64-unknown-linux-gnu <%s
+; RUN: llc -mtriple=x86_64-unknown-linux-gnu < %s
; ModuleID = 'bug.c'
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
target triple = "x86_64-unknown-linux-gnu"
Modified: llvm/trunk/test/CodeGen/X86/inlineasm-sched-bug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/inlineasm-sched-bug.ll?rev=352318&r1=352317&r2=352318&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/inlineasm-sched-bug.ll (original)
+++ llvm/trunk/test/CodeGen/X86/inlineasm-sched-bug.ll Sun Jan 27 07:36:35 2019
@@ -1,5 +1,5 @@
; PR13504
-; RUN: llc -mtriple=i686-- -mcpu=atom <%s | FileCheck %s
+; RUN: llc -mtriple=i686-- -mcpu=atom < %s | FileCheck %s
; CHECK: bsfl
; CHECK-NOT: movl
More information about the llvm-commits
mailing list