[NFC] Port all LICM tests to -passes= syntax

This commit is contained in:
Roman Lebedev
2022-12-08 02:27:26 +03:00
parent 8205a68da8
commit 1e2c548150
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
; RUN: opt < %s -passes=licm -S | FileCheck %s
; This test case case is generated from the following C code with -fstrict-aliasing,
; and after passing through -inline -mem2reg -loop-rotate -instcombine
; and after passing through -passes=inline,mem2reg,loop-rotate,instcombine
; void add(ptr restrict data, int *restrict addend) {
; *data += *addend;
; }

View File

@@ -1,7 +1,7 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; REQUIRES: aarch64-registered-target
; RUN: opt < %s -passes=licm -S | FileCheck %s
; RUN: opt < %s -passes=licm -S | FileCheck %s
target triple = "aarch64--linux-gnueabi"