Bjorn Pettersson ec9ccb1668 [test] Use -passes syntax in Analysis tests
Another step towards getting rid of dependencies to the legacy
pass manager.

Primary change here is to just do -passes=foo instead of -foo in
simple situations (when running a single pass). But also
updated a few test running multiple passes.
2022-10-21 20:38:42 +02:00

15 lines
357 B
LLVM

; RUN: opt < %s -aa-pipeline=basic-aa -passes=gvn,instcombine -S | FileCheck %s
@flag0 = internal global i32 zeroinitializer
@turn = internal global i32 zeroinitializer
; CHECK: ret i32 0
define i32 @main() {
%a = load i32, i32* @flag0
%b = atomicrmw xchg i32* @turn, i32 1 monotonic
%c = load i32, i32* @flag0
%d = sub i32 %a, %c
ret i32 %d
}