From f1c058d99b32288d637aec52283e98cf821667e8 Mon Sep 17 00:00:00 2001 From: Evgeny Stupachenko Date: Tue, 27 Feb 2018 01:33:11 +0000 Subject: [PATCH] Fix r326154 buildbots test fail Summary: Add specific mtriples to tests added in r326154. From: Evgeny Stupachenko llvm-svn: 326158 --- llvm/test/Transforms/LoopVectorize/{ => AArch64}/pr36032.ll | 3 +-- llvm/test/Transforms/LoopVectorize/{ => X86}/pr35432.ll | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) rename llvm/test/Transforms/LoopVectorize/{ => AArch64}/pr36032.ll (99%) rename llvm/test/Transforms/LoopVectorize/{ => X86}/pr35432.ll (99%) diff --git a/llvm/test/Transforms/LoopVectorize/pr36032.ll b/llvm/test/Transforms/LoopVectorize/AArch64/pr36032.ll similarity index 99% rename from llvm/test/Transforms/LoopVectorize/pr36032.ll rename to llvm/test/Transforms/LoopVectorize/AArch64/pr36032.ll index f99c3625dd54..aadc4cb8e61f 100644 --- a/llvm/test/Transforms/LoopVectorize/pr36032.ll +++ b/llvm/test/Transforms/LoopVectorize/AArch64/pr36032.ll @@ -1,10 +1,9 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py -; RUN: opt -loop-vectorize -S < %s | FileCheck %s +; RUN: opt -loop-vectorize -S -mtriple=aarch64-unknown-linux-gnu < %s | FileCheck %s ; The test checks that there is no assert caused by issue described in PR36032 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" -target triple = "aarch64--" %struct.anon = type { i8 } diff --git a/llvm/test/Transforms/LoopVectorize/pr35432.ll b/llvm/test/Transforms/LoopVectorize/X86/pr35432.ll similarity index 99% rename from llvm/test/Transforms/LoopVectorize/pr35432.ll rename to llvm/test/Transforms/LoopVectorize/X86/pr35432.ll index d8b675e961c6..b8760cb8d509 100644 --- a/llvm/test/Transforms/LoopVectorize/pr35432.ll +++ b/llvm/test/Transforms/LoopVectorize/X86/pr35432.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py -; RUN: opt -loop-vectorize -S < %s | FileCheck %s +; RUN: opt -loop-vectorize -mtriple=x86_64-unknown-linux-gnu -S < %s | FileCheck %s ; The test checks that there is no assert caused by issue described in PR35432