Files
clang-p2996/llvm/test/Transforms/InstCombine/2003-05-27-ConstExprCrash.ll
Bjorn Pettersson acdc419c89 [test] Use -passes=instcombine instead of -instcombine in lots of tests. NFC
Another step moving away from the deprecated syntax of specifying
pass pipeline in opt.

Differential Revision: https://reviews.llvm.org/D119081
2022-02-07 14:26:59 +01:00

11 lines
288 B
LLVM

; RUN: opt < %s -passes=instcombine -disable-output
@X = global i32 5 ; <i32*> [#uses=1]
define i64 @test() {
%C = add i64 1, 2 ; <i64> [#uses=1]
%V = add i64 ptrtoint (i32* @X to i64), %C ; <i64> [#uses=1]
ret i64 %V
}