Add correct NEON encodings for the "multiple single elements" form of vld.
[oota-llvm.git] / test / Transforms / InstCombine / 2003-11-13-ConstExprCastCall.ll
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
2 target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
3
4 declare void @free(i8*)
5
6 define void @test(i32* %X) {
7         call void (...)* bitcast (void (i8*)* @free to void (...)*)( i32* %X )          ; <i32>:1 [#uses=0]
8 ; CHECK: %tmp = bitcast i32* %X to i8*
9 ; CHECK: call void @free(i8* %tmp)
10         ret void
11 ; CHECK: ret void
12 }