diff options
author | Florian Hahn <flo@fhahn.com> | 2024-12-11 21:37:46 +0000 |
---|---|---|
committer | Florian Hahn <flo@fhahn.com> | 2024-12-11 21:39:45 +0000 |
commit | 4993a30365309c5a0406fb63647be96e93fa3516 (patch) | |
tree | 2279e26a11e941e8398863e416c380c430af760f /llvm | |
parent | 6f3f08abdc9faac1fe07018bf72d532443f2ec05 (diff) | |
download | llvm-4993a30365309c5a0406fb63647be96e93fa3516.zip llvm-4993a30365309c5a0406fb63647be96e93fa3516.tar.gz llvm-4993a30365309c5a0406fb63647be96e93fa3516.tar.bz2 |
[LV] Add missing REQUIRES: asserts to test using -debug.
Fixup for test added in 5fae408d3a4c07.
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/uncountable-early-exit-vplan.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/uncountable-early-exit-vplan.ll b/llvm/test/Transforms/LoopVectorize/uncountable-early-exit-vplan.ll index c456349..368c766 100644 --- a/llvm/test/Transforms/LoopVectorize/uncountable-early-exit-vplan.ll +++ b/llvm/test/Transforms/LoopVectorize/uncountable-early-exit-vplan.ll @@ -1,6 +1,8 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5 ; RUN: opt -p loop-vectorize -force-vector-width=4 -force-vector-interleave=1 -S -enable-early-exit-vectorization -debug %s 2>&1 | FileCheck %s +; REQUIRES: asserts + declare void @init(ptr) define i64 @multi_exiting_to_different_exits_live_in_exit_values() { |