1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

New testcase for PR491

llvm-svn: 19178
This commit is contained in:
Chris Lattner 2004-12-29 04:27:26 +00:00
parent 992916974e
commit 814ff906be

View File

@ -0,0 +1,10 @@
; RUN: llvm-as < %s | opt -dse | llvm-dis | grep 'store int 1234567'
int %test() {
%V = alloca int
store int 1234567, int* %V
%V2 = cast int* %V to sbyte*
store sbyte 0, sbyte* %V2
%X = load int* %V
ret int %X
}