1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/Transforms/InstCombine/2003-05-27-ConstExprCrash.ll

11 lines
281 B
LLVM
Raw Normal View History

; RUN: opt < %s -instcombine -disable-output
2003-05-27 18:45:09 +02:00
@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
2003-05-27 18:45:09 +02:00
}