From e9bc1e826326f394cf7d29d940809d8b64317338 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 12 Oct 2014 06:47:47 +0000 Subject: [PATCH] llvm/test/CodeGen: Some tests don't REQUIRE asserts any more. Remove them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219581 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/AArch64/arm64-abi.ll | 1 - test/CodeGen/AArch64/arm64-fast-isel-rem.ll | 1 - test/CodeGen/AArch64/fast-isel-switch-phi.ll | 1 - test/CodeGen/R600/big_alu.ll | 1 - test/CodeGen/R600/load-input-fold.ll | 1 - .../R600/r600-infinite-loop-bug-while-reorganizing-vector.ll | 1 - test/CodeGen/R600/r600cfg.ll | 1 - test/CodeGen/X86/fast-isel-args-fail.ll | 1 - 8 files changed, 8 deletions(-) diff --git a/test/CodeGen/AArch64/arm64-abi.ll b/test/CodeGen/AArch64/arm64-abi.ll index 389f10f3b12..8a6b64d6ff3 100644 --- a/test/CodeGen/AArch64/arm64-abi.ll +++ b/test/CodeGen/AArch64/arm64-abi.ll @@ -1,6 +1,5 @@ ; RUN: llc -mtriple=arm64-apple-darwin -mcpu=cyclone -enable-misched=false < %s | FileCheck %s ; RUN: llc -O0 -mtriple=arm64-apple-darwin < %s | FileCheck --check-prefix=FAST %s -; REQUIRES: asserts ; rdar://9932559 define i64 @i8i16callee(i64 %a1, i64 %a2, i64 %a3, i8 signext %a4, i16 signext %a5, i64 %a6, i64 %a7, i64 %a8, i8 signext %b1, i16 signext %b2, i8 signext %b3, i8 signext %b4) nounwind readnone noinline { diff --git a/test/CodeGen/AArch64/arm64-fast-isel-rem.ll b/test/CodeGen/AArch64/arm64-fast-isel-rem.ll index 5781a602101..26f9afaccee 100644 --- a/test/CodeGen/AArch64/arm64-fast-isel-rem.ll +++ b/test/CodeGen/AArch64/arm64-fast-isel-rem.ll @@ -1,7 +1,6 @@ ; RUN: llc -O0 -fast-isel-abort -verify-machineinstrs -mtriple=arm64-apple-darwin < %s | FileCheck %s ; RUN: llc %s -O0 -fast-isel-abort -mtriple=arm64-apple-darwin -print-machineinstrs=expand-isel-pseudos -o /dev/null 2> %t ; RUN: FileCheck %s < %t --check-prefix=CHECK-SSA -; REQUIRES: asserts ; CHECK-SSA-LABEL: Machine code for function t1 diff --git a/test/CodeGen/AArch64/fast-isel-switch-phi.ll b/test/CodeGen/AArch64/fast-isel-switch-phi.ll index f2d8090aa0a..c4f871cb56e 100644 --- a/test/CodeGen/AArch64/fast-isel-switch-phi.ll +++ b/test/CodeGen/AArch64/fast-isel-switch-phi.ll @@ -1,5 +1,4 @@ ; RUN: llc -mtriple=aarch64-apple-darwin -fast-isel -verify-machineinstrs < %s -; REQUIRES: asserts ; Test that the Machine Instruction PHI node doesn't have more than one operand ; from the same predecessor. diff --git a/test/CodeGen/R600/big_alu.ll b/test/CodeGen/R600/big_alu.ll index 511e8ef6295..28be216e76f 100644 --- a/test/CodeGen/R600/big_alu.ll +++ b/test/CodeGen/R600/big_alu.ll @@ -1,5 +1,4 @@ ;RUN: llc < %s -march=r600 -mcpu=cedar -;REQUIRES: asserts ;This test ensures that R600 backend can handle ifcvt properly ;and do not generate ALU clauses with more than 128 instructions. diff --git a/test/CodeGen/R600/load-input-fold.ll b/test/CodeGen/R600/load-input-fold.ll index ca86d0e3690..265fa9bfeb4 100644 --- a/test/CodeGen/R600/load-input-fold.ll +++ b/test/CodeGen/R600/load-input-fold.ll @@ -1,5 +1,4 @@ ;RUN: llc < %s -march=r600 -mcpu=cayman -;REQUIRES: asserts define void @main(<4 x float> inreg %reg0, <4 x float> inreg %reg1, <4 x float> inreg %reg2, <4 x float> inreg %reg3) #0 { main_body: diff --git a/test/CodeGen/R600/r600-infinite-loop-bug-while-reorganizing-vector.ll b/test/CodeGen/R600/r600-infinite-loop-bug-while-reorganizing-vector.ll index c89398f0066..f388f8ffe29 100644 --- a/test/CodeGen/R600/r600-infinite-loop-bug-while-reorganizing-vector.ll +++ b/test/CodeGen/R600/r600-infinite-loop-bug-while-reorganizing-vector.ll @@ -1,5 +1,4 @@ ;RUN: llc < %s -march=r600 -mcpu=cayman -;REQUIRES: asserts define void @main(<4 x float> inreg, <4 x float> inreg) #0 { main_body: diff --git a/test/CodeGen/R600/r600cfg.ll b/test/CodeGen/R600/r600cfg.ll index 6dee3ef89cf..dddc9de7e96 100644 --- a/test/CodeGen/R600/r600cfg.ll +++ b/test/CodeGen/R600/r600cfg.ll @@ -1,5 +1,4 @@ ;RUN: llc < %s -march=r600 -mcpu=redwood -;REQUIRES: asserts define void @main(<4 x float> inreg %reg0, <4 x float> inreg %reg1) #0 { main_body: diff --git a/test/CodeGen/X86/fast-isel-args-fail.ll b/test/CodeGen/X86/fast-isel-args-fail.ll index 7467edd74f2..7e783d2891d 100644 --- a/test/CodeGen/X86/fast-isel-args-fail.ll +++ b/test/CodeGen/X86/fast-isel-args-fail.ll @@ -1,7 +1,6 @@ ; RUN: llc < %s -fast-isel -verify-machineinstrs -mtriple=x86_64-apple-darwin10 ; RUN: llc < %s -fast-isel -verify-machineinstrs -mtriple=x86_64-pc-win32 | FileCheck %s -check-prefix=WIN32 ; RUN: llc < %s -fast-isel -verify-machineinstrs -mtriple=x86_64-pc-win64 | FileCheck %s -check-prefix=WIN64 -; REQUIRES: asserts ; Previously, this would cause an assert. define i31 @t1(i31 %a, i31 %b, i31 %c) {