[llvm] r359737 - Fix erroneous flag in GISel line for arm64-fast-isel-materialize.ll

Jessica Paquette via llvm-commits llvm-commits at lists.llvm.org
Wed May 1 15:50:11 PDT 2019


Author: paquette
Date: Wed May  1 15:50:11 2019
New Revision: 359737

URL: http://llvm.org/viewvc/llvm-project?rev=359737&view=rev
Log:
Fix erroneous flag in GISel line for arm64-fast-isel-materialize.ll

Accidentally put a fast-isel-abort=2 instead of the GISel abort line.

This test doesn't actually fall back at all for GISel though, so remove the
fallback checks entirely.

Modified:
    llvm/trunk/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll

Modified: llvm/trunk/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll?rev=359737&r1=359736&r2=359737&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/arm64-fast-isel-materialize.ll Wed May  1 15:50:11 2019
@@ -1,7 +1,6 @@
 ; RUN: llc -O0 -fast-isel -fast-isel-abort=1 -verify-machineinstrs -mtriple=arm64-apple-darwin < %s | FileCheck %s
-; RUN: llc -O0 -global-isel -fast-isel-abort=2 -pass-remarks-missed=gisel* -verify-machineinstrs -mtriple=arm64-apple-darwin %s -o - 2>&1 | FileCheck %s --check-prefixes=GISEL,FALLBACK
+; RUN: llc -O0 -global-isel -verify-machineinstrs -mtriple=arm64-apple-darwin %s -o - | FileCheck %s --check-prefix=GISEL
 
-; FALLBACK-NOT: remark:
 
 ; Materialize using fmov
 define float @fmov_float1() {




More information about the llvm-commits mailing list