diff options
author | Evgeny Stupachenko <evstupac@gmail.com> | 2018-02-27 01:33:11 +0000 |
---|---|---|
committer | Evgeny Stupachenko <evstupac@gmail.com> | 2018-02-27 01:33:11 +0000 |
commit | f1c058d99b32288d637aec52283e98cf821667e8 (patch) | |
tree | c8239fbf930389d09c3afbd6554aee95c6ee37b6 /llvm/test/Transforms/LoopVectorize | |
parent | 06b7bd61f4986b18766977530417bf489f8d5578 (diff) | |
download | bcm5719-llvm-f1c058d99b32288d637aec52283e98cf821667e8.tar.gz bcm5719-llvm-f1c058d99b32288d637aec52283e98cf821667e8.zip |
Fix r326154 buildbots test fail
Summary:
Add specific mtriples to tests added in r326154.
From: Evgeny Stupachenko <evstupac@gmail.com>
<evgeny.v.stupachenko@intel.com>
llvm-svn: 326158
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/AArch64/pr36032.ll (renamed from llvm/test/Transforms/LoopVectorize/pr36032.ll) | 3 | ||||
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/X86/pr35432.ll (renamed from llvm/test/Transforms/LoopVectorize/pr35432.ll) | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/pr36032.ll b/llvm/test/Transforms/LoopVectorize/AArch64/pr36032.ll index f99c3625dd5..aadc4cb8e61 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 index d8b675e961c..b8760cb8d50 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 |