[llvm] r354529 - [GlobalISel] Add -O0 to some tests to see if it fixes them. I can't reproduce the failures locally,

Amara Emerson via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 20 15:22:15 PST 2019


Author: aemerson
Date: Wed Feb 20 15:22:15 2019
New Revision: 354529

URL: http://llvm.org/viewvc/llvm-project?rev=354529&view=rev
Log:
[GlobalISel] Add -O0 to some tests to see if it fixes them. I can't reproduce the failures locally,
and greendragon also passes, but some other bots fail for reasons I don't understand.
The only difference I can see between these tests is it's missing an -O0
If this doesn't work I'll revert and continue investigating.

Modified:
    llvm/trunk/test/CodeGen/AArch64/GlobalISel/legalize-shuffle-vector.mir
    llvm/trunk/test/CodeGen/AArch64/GlobalISel/select-shuffle-vector.mir

Modified: llvm/trunk/test/CodeGen/AArch64/GlobalISel/legalize-shuffle-vector.mir
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/GlobalISel/legalize-shuffle-vector.mir?rev=354529&r1=354528&r2=354529&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/GlobalISel/legalize-shuffle-vector.mir (original)
+++ llvm/trunk/test/CodeGen/AArch64/GlobalISel/legalize-shuffle-vector.mir Wed Feb 20 15:22:15 2019
@@ -1,5 +1,5 @@
 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
-# RUN: llc -march=aarch64 -run-pass=legalizer -global-isel-abort=1 %s -o - | FileCheck %s
+# RUN: llc -mtriple=aarch64 -O0 -run-pass=legalizer -global-isel-abort=1 %s -o - | FileCheck %s
 ---
 name:            shuffle_v4i32
 alignment:       2

Modified: llvm/trunk/test/CodeGen/AArch64/GlobalISel/select-shuffle-vector.mir
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/GlobalISel/select-shuffle-vector.mir?rev=354529&r1=354528&r2=354529&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/GlobalISel/select-shuffle-vector.mir (original)
+++ llvm/trunk/test/CodeGen/AArch64/GlobalISel/select-shuffle-vector.mir Wed Feb 20 15:22:15 2019
@@ -1,5 +1,5 @@
 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
-# RUN: llc -mtriple=aarch64-- -run-pass=instruction-select -verify-machineinstrs %s -global-isel-abort=1 -o - | FileCheck %s
+# RUN: llc -mtriple=aarch64-- -O0 -run-pass=instruction-select -verify-machineinstrs %s -global-isel-abort=1 -o - | FileCheck %s
 --- |
   ; ModuleID = 'shufflevec-only-legal.ll'
   source_filename = "shufflevec-only-legal.ll"




More information about the llvm-commits mailing list