diff options
author | Paul Walker <paul.walker@arm.com> | 2025-08-01 16:49:04 +0000 |
---|---|---|
committer | Paul Walker <paul.walker@arm.com> | 2025-08-01 16:54:48 +0000 |
commit | d77e339e7ba3af21e92ad7f7d17fc8ad1d5dd5b4 (patch) | |
tree | 41e40381568e73fa1d676c01d4229650e2659f0e /llvm | |
parent | d28bb1fd786677fca73390a57972d3c722c30dcd (diff) | |
download | llvm-d77e339e7ba3af21e92ad7f7d17fc8ad1d5dd5b4.zip llvm-d77e339e7ba3af21e92ad7f7d17fc8ad1d5dd5b4.tar.gz llvm-d77e339e7ba3af21e92ad7f7d17fc8ad1d5dd5b4.tar.bz2 |
[NFC][LLVM] Make test resilent to value of use-constant-*-splat flags.
Ensure Transforms/Reassociate/fast-ReassociateVector.ll passes when
UseConstantIntForFixedLengthSplat defaults to true.
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/Transforms/Reassociate/fast-ReassociateVector.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/Reassociate/fast-ReassociateVector.ll b/llvm/test/Transforms/Reassociate/fast-ReassociateVector.ll index d313164..1a18526 100644 --- a/llvm/test/Transforms/Reassociate/fast-ReassociateVector.ll +++ b/llvm/test/Transforms/Reassociate/fast-ReassociateVector.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py -; RUN: opt < %s -passes=reassociate -S | FileCheck %s --check-prefixes=CHECK,CHECK-CV +; RUN: opt < %s -passes=reassociate -S -use-constant-int-for-fixed-length-splat=false | FileCheck %s --check-prefixes=CHECK,CHECK-CV ; RUN: opt < %s -passes=reassociate -S -use-constant-int-for-fixed-length-splat | FileCheck %s --check-prefixes=CHECK,CHECK-CI ; Check that a*c+b*c is turned into (a+b)*c |