diff options
author | Arthur Eubanks <aeubanks@google.com> | 2023-02-27 15:38:39 -0800 |
---|---|---|
committer | Arthur Eubanks <aeubanks@google.com> | 2023-02-27 15:38:55 -0800 |
commit | 6c0fe14414cd0b3cbd96e809843ebbe3428da64e (patch) | |
tree | b4e144277af3cd8f65df9a91d4661637aa4e186f /polly | |
parent | c30ab9dcff3f692001dfe5c0d1776692c47796cb (diff) | |
download | llvm-6c0fe14414cd0b3cbd96e809843ebbe3428da64e.zip llvm-6c0fe14414cd0b3cbd96e809843ebbe3428da64e.tar.gz llvm-6c0fe14414cd0b3cbd96e809843ebbe3428da64e.tar.bz2 |
[polly] Remove unnecessary -enable-new-pm flags
Diffstat (limited to 'polly')
-rw-r--r-- | polly/test/GPGPU/spir-codegen.ll | 2 | ||||
-rw-r--r-- | polly/test/Support/dumpfunction.ll | 4 | ||||
-rw-r--r-- | polly/test/Support/exportjson.ll | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/polly/test/GPGPU/spir-codegen.ll b/polly/test/GPGPU/spir-codegen.ll index f610f91..3715e1e 100644 --- a/polly/test/GPGPU/spir-codegen.ll +++ b/polly/test/GPGPU/spir-codegen.ll @@ -1,6 +1,6 @@ ; RUN: opt -opaque-pointers=0 %loadPolly -polly-codegen-ppcg \ ; RUN: -polly-gpu-arch=spir32 \ -; RUN: -polly-acc-dump-kernel-ir -polly-process-unprofitable -disable-output -enable-new-pm=0 < %s | \ +; RUN: -polly-acc-dump-kernel-ir -polly-process-unprofitable -disable-output < %s | \ ; RUN: FileCheck %s ; REQUIRES: pollyacc diff --git a/polly/test/Support/dumpfunction.ll b/polly/test/Support/dumpfunction.ll index 8d57802..de7e802 100644 --- a/polly/test/Support/dumpfunction.ll +++ b/polly/test/Support/dumpfunction.ll @@ -1,9 +1,9 @@ ; New pass manager -; RUN: opt %loadNPMPolly -enable-new-pm=1 -O3 -polly -polly-position=before-vectorizer -polly-dump-before --disable-output %s +; RUN: opt %loadNPMPolly -O3 -polly -polly-position=before-vectorizer -polly-dump-before --disable-output %s ; RUN: FileCheck --input-file=dumpfunction-callee-before.ll --check-prefix=CHECK --check-prefix=CALLEE %s ; RUN: FileCheck --input-file=dumpfunction-caller-before.ll --check-prefix=CHECK --check-prefix=CALLER %s ; -; RUN: opt %loadNPMPolly -enable-new-pm=1 -O3 -polly -polly-position=before-vectorizer -polly-dump-after --disable-output %s +; RUN: opt %loadNPMPolly -O3 -polly -polly-position=before-vectorizer -polly-dump-after --disable-output %s ; RUN: FileCheck --input-file=dumpfunction-callee-after.ll --check-prefix=CHECK --check-prefix=CALLEE %s ; RUN: FileCheck --input-file=dumpfunction-caller-after.ll --check-prefix=CHECK --check-prefix=CALLER %s diff --git a/polly/test/Support/exportjson.ll b/polly/test/Support/exportjson.ll index 9974f67..22cfea2 100644 --- a/polly/test/Support/exportjson.ll +++ b/polly/test/Support/exportjson.ll @@ -1,6 +1,6 @@ ; RUN: rm -rf %t ; RUN: mkdir -p %t -; RUN: opt %loadNPMPolly -polly-import-jscop-dir=%t -enable-new-pm=1 -polly -O2 -polly-export -S < %s +; RUN: opt %loadNPMPolly -polly-import-jscop-dir=%t -polly -O2 -polly-export -S < %s ; RUN: FileCheck %s -input-file %t/exportjson___%entry.split---%return.jscop ; ; for (int j = 0; j < n; j += 1) { |