[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Analysis / Lint / noop-cast-expr-no-pointer.ll
blobb925871142824b50a8d709dcaba6b4f7d7671806
1 ; RUN: opt -lint < %s
3 ; lint shouldn't crash on any of the below functions
5 @g_1 = external global [3 x i32]
6 @g_2 = external global [2 x i32]
8 define void @test1() {
9 entry:
10   tail call void @f1(i16 zext (i1 icmp eq (i32* getelementptr inbounds ([2 x i32], [2 x i32]* @g_2, i64 0, i64 0), i32* getelementptr inbounds ([3 x i32], [3 x i32]* @g_1, i64 0, i64 1)) to i16))
11   ret void
14 declare void @f1(i16)
16 define void @test2() {
17   tail call void inttoptr (i64 sext (i32 ptrtoint (void ()* @f2 to i32) to i64) to void ()*)()
19   ret void
22 declare void @f2()