From 7a41cd5b88849bc18b9d0a3971b4f9f551a6bd72 Mon Sep 17 00:00:00 2001 From: Nemanja Ivanovic Date: Fri, 10 May 2019 15:44:56 +0000 Subject: [PATCH] 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. llvm-svn: 360434 --- .../Transforms/PhaseOrdering/reassociate-after-unroll.ll | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/llvm/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll b/llvm/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll index 0cb7b558a783..89d6af1d2e9b 100644 --- a/llvm/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll +++ b/llvm/test/Transforms/PhaseOrdering/reassociate-after-unroll.ll @@ -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' -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' -S < %s | FileCheck %s --check-prefix=NPM target datalayout = "e-m:e-i64:64-n32:64" target triple = "powerpc64le-unknown-linux-gnu"