Add correct NEON encodings for the "multiple single elements" form of vld.
[oota-llvm.git] / test / Transforms / InstCombine / 2003-11-13-ConstExprCastCall.ll
index f35f59f7655afc7b685570e392b14a553e1893ef..fdb8fd9363c66dde10103d840817c151b097aa9a 100644 (file)
@@ -1,8 +1,12 @@
-; RUN: opt %s -instcombine | llvm-dis | grep call | notcast
+; RUN: opt < %s -instcombine -S | FileCheck %s
+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"
 
 declare void @free(i8*)
 
 define void @test(i32* %X) {
         call void (...)* bitcast (void (i8*)* @free to void (...)*)( i32* %X )          ; <i32>:1 [#uses=0]
+; CHECK: %tmp = bitcast i32* %X to i8*
+; CHECK: call void @free(i8* %tmp)
         ret void
+; CHECK: ret void
 }