mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-09 10:05:41 +00:00
39f4e8d9cc
This update was done with the following bash script: find test/Transforms -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP done mv $TEMP $NAME fi done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186268 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
886 B
LLVM
28 lines
886 B
LLVM
; RUN: opt -gvn -S < %s | FileCheck %s
|
|
target datalayout = "e-p:32:32:32"
|
|
target triple = "i386-pc-linux-gnu"
|
|
define <2 x i32> @test1() {
|
|
%v1 = alloca <2 x i32>
|
|
call void @anything(<2 x i32>* %v1)
|
|
%v2 = load <2 x i32>* %v1
|
|
%v3 = inttoptr <2 x i32> %v2 to <2 x i8*>
|
|
%v4 = bitcast <2 x i32>* %v1 to <2 x i8*>*
|
|
store <2 x i8*> %v3, <2 x i8*>* %v4
|
|
%v5 = load <2 x i32>* %v1
|
|
ret <2 x i32> %v5
|
|
; CHECK-LABEL: @test1(
|
|
; CHECK: %v1 = alloca <2 x i32>
|
|
; CHECK: call void @anything(<2 x i32>* %v1)
|
|
; CHECK: %v2 = load <2 x i32>* %v1
|
|
; CHECK: %v3 = inttoptr <2 x i32> %v2 to <2 x i8*>
|
|
; CHECK: %v4 = bitcast <2 x i32>* %v1 to <2 x i8*>*
|
|
; CHECK: store <2 x i8*> %v3, <2 x i8*>* %v4
|
|
; CHECK: %1 = ptrtoint <2 x i8*> %v3 to <2 x i32>
|
|
; CHECK: %2 = bitcast <2 x i32> %1 to i64
|
|
; CHECK: %3 = bitcast i64 %2 to <2 x i32>
|
|
; CHECK: ret <2 x i32> %3
|
|
}
|
|
|
|
declare void @anything(<2 x i32>*)
|
|
|