35 lines
1.8 KiB
LLVM
35 lines
1.8 KiB
LLVM
; RUN: not opt -O1 -O2 < %s 2>&1 | FileCheck %s --check-prefix=MULTIPLE
|
|
; RUN: not opt -O1 -passes='no-op-module' < %s 2>&1 | FileCheck %s --check-prefix=BOTH
|
|
; RUN: not opt -O1 --gvn < %s 2>&1 | FileCheck %s --check-prefix=BOTH
|
|
; RUN: opt -O0 < %s -S 2>&1 | FileCheck %s --check-prefix=OPT
|
|
; RUN: opt -O1 < %s -S 2>&1 | FileCheck %s --check-prefix=OPT
|
|
; RUN: opt -O2 < %s -S 2>&1 | FileCheck %s --check-prefix=OPT
|
|
; RUN: opt -O3 < %s -S 2>&1 | FileCheck %s --check-prefix=OPT
|
|
; RUN: opt -Os < %s -S 2>&1 | FileCheck %s --check-prefix=OPT
|
|
; RUN: opt -Oz < %s -S 2>&1 | FileCheck %s --check-prefix=OPT
|
|
; RUN: opt -O2 -debug-pass-manager -disable-output < %s 2>&1 | FileCheck %s --check-prefix=AA
|
|
|
|
; MULTIPLE: Cannot specify multiple -O#
|
|
; BOTH: Cannot specify -O# and --passes=
|
|
; OPT: define void @f
|
|
; Make sure we run the default AA pipeline with `opt -O#`
|
|
; AA: Running analysis: ScopedNoAliasAA
|
|
|
|
define void @f() {
|
|
unreachable
|
|
}
|
|
|
|
|
|
; Legacy PM deprecation tests (tests should be removed in the future).
|
|
;
|
|
; RUN: not opt -enable-new-pm=0 -O0 < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
; RUN: not opt -enable-new-pm=0 -O1 < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
; RUN: not opt -enable-new-pm=0 -O2 < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
; RUN: not opt -enable-new-pm=0 -O3 < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
; RUN: not opt -enable-new-pm=0 -Os < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
; RUN: not opt -enable-new-pm=0 -Oz < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
; RUN: not opt -O1 -codegenprepare < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
; RUN: not opt -codegenprepare -O2 < %s -S 2>&1 | FileCheck %s --check-prefix=LEGACYPM-ERROR
|
|
|
|
; LEGACYPM-ERROR: Cannot use -O# with legacy PM
|