bolt/deps/llvm-18.1.8/llvm/test/Transforms/InstCombine/2003-05-27-ConstExprCrash.ll

11 lines
286 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: opt < %s -passes=instcombine -disable-output
@X = global i32 5 ; <ptr> [#uses=1]
define i64 @test() {
%C = add i64 1, 2 ; <i64> [#uses=1]
%V = add i64 ptrtoint (ptr @X to i64), %C ; <i64> [#uses=1]
ret i64 %V
}