[llvm] r360434 - Another attempt to fix the build bot breaks after r360426

Nemanja Ivanovic via llvm-commits llvm-commits at lists.llvm.org
Fri May 10 08:44:57 PDT 2019


Author: nemanjai
Date: Fri May 10 08:44:56 2019
New Revision: 360434

URL: http://llvm.org/viewvc/llvm-project?rev=360434&view=rev
Log:
Another attempt to fix the build bot breaks after r360426

The test case checks were produced by the update_test_checks.py
scripts and I assumed that is sufficient. However, the behaviour
is different with different default target triples. Specify the
triple explicitly in the test case.

If this doesn't clean up the build bot breaks, I'll remove the test
case until I can get to the bottom of why the behaviour on build bots
is different from my machine.

Modified:
    llvm/trunk/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll

Modified: llvm/trunk/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll?rev=360434&r1=360433&r2=360434&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll (original)
+++ llvm/trunk/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll Fri May 10 08:44:56 2019
@@ -1,7 +1,6 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
-; REQUIRES: asserts
-; RUN: opt -O2 -S < %s | FileCheck %s
-; RUN: opt -passes='default<O2>' -S < %s | FileCheck %s --check-prefix=NPM
+; RUN: opt -mtriple=powerpc64le-unknown-unknown -O2 -S < %s | FileCheck %s
+; RUN: opt -mtriple=powerpc64le-unknown-unknown -passes='default<O2>' -S < %s | FileCheck %s --check-prefix=NPM
 
 target datalayout = "e-m:e-i64:64-n32:64"
 target triple = "powerpc64le-unknown-linux-gnu"




More information about the llvm-commits mailing list