This updates NewGVN test cases that were running "opt -basic-aa -newgvn ..." to run "opt -passes=newgvn ..." instead. The pipeline will be more similar to what we used to have with legacy PM by doing it this way. The compatility mode that we've been using for awhile during transition from legacy PM to new PM, i.e. using the legacy syntax together with new PM, has resulted in a pipeline such as -passes='function(require<basic-aa>),function(newgvn)' but running the analysis in a separate function pass manager seem overly complicated for these tests. Another difference is that we will get the default aa-pipeline instead of only running basic-aa. That might be a bit questioned (given that the tests originally specified basic-aa). The output is however identival for all the test cases modified here regardless of using basic-aa or the default aa-pipeline. This is also another small step towards removal of the support for using the legacy PM syntax in opt. Differential Revision: https://reviews.llvm.org/D118340
19 lines
487 B
LLVM
19 lines
487 B
LLVM
; RUN: opt -passes=newgvn -disable-output < %s
|
|
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define i64 @foo(i64** %arrayidx) {
|
|
entry:
|
|
%p = load i64*, i64** %arrayidx, align 8
|
|
%cmpnull = icmp eq i64* %p, null
|
|
br label %BB2
|
|
|
|
entry2: ; No predecessors!
|
|
br label %BB2
|
|
|
|
BB2: ; preds = %entry2, %entry
|
|
%bc = bitcast i64** %arrayidx to i64*
|
|
%load = load i64, i64* %bc, align 8
|
|
ret i64 %load
|
|
}
|