[NFC] Port all Analysis/LoopAccessAnalysis tests to `-passes=` syntax
authorRoman Lebedev <lebedev.ri@gmail.com>
Thu, 8 Dec 2022 21:49:40 +0000 (00:49 +0300)
committerRoman Lebedev <lebedev.ri@gmail.com>
Thu, 8 Dec 2022 22:04:45 +0000 (01:04 +0300)
llvm/test/Analysis/LoopAccessAnalysis/interleave-innermost.ll
llvm/test/Analysis/LoopAccessAnalysis/memcheck-ni.ll
llvm/test/Analysis/LoopAccessAnalysis/scalable-vector-regression-tests.ll

index c8504c7..5029fc2 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -temporarily-allow-old-pass-syntax -loop-vectorize -force-vector-interleave=1 -S < %s | FileCheck %s
+; RUN: opt -passes=loop-vectorize -force-vector-interleave=1 -S < %s | FileCheck %s
 ; CHECK-LABEL: TestFoo
 ; CHECK-NOT: %wide.vec
 
index ac4cdb1..04b8fcd 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt -temporarily-allow-old-pass-syntax -loop-versioning -S < %s | FileCheck %s
+; RUN: opt -passes=loop-versioning -S < %s | FileCheck %s
 
 ; NB: addrspaces 10-13 are non-integral
 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128-ni:10:11:12:13"
index 5b3c8bc..995bc66 100644 (file)
@@ -1,9 +1,9 @@
-; RUN: opt -temporarily-allow-old-pass-syntax -loop-load-elim -mtriple=aarch64 -mattr=+sve -S -debug < %s 2>&1 | FileCheck %s
+; RUN: opt -passes=loop-load-elim -mtriple=aarch64 -mattr=+sve -S -debug < %s 2>&1 | FileCheck %s
 ; REQUIRES: asserts
 
 ; Regression tests verifying "assumption that TypeSize is not scalable" and
 ; "Invalid size request on a scalable vector." are not produced by
-; -load-loop-elim (this would cause the test to fail because opt -temporarily-allow-old-pass-syntax would exit with
+; -load-loop-elim (this would cause the test to fail because opt would exit with
 ; a non-zero exit status).
 
 ; No output checked for this one, but causes a fatal error if the regression is present.