summaryrefslogtreecommitdiff
path: root/release_23/test/Transforms/InstCombine/2003-05-27-ConstExprCrash.ll
blob: 214fa4d846dbcb224dcc2eae7200ef3c372f678d (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | opt -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
}