2007-08-01 14:36:51 +08:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -dse | llvm-dis | \
|
2007-04-15 16:30:33 +08:00
|
|
|
; RUN: not grep {store sbyte}
|
2004-12-29 12:35:30 +08:00
|
|
|
; Ensure that the dead store is deleted in this case. It is wholely
|
|
|
|
; overwritten by the second store.
|
|
|
|
int %test() {
|
|
|
|
%V = alloca int
|
|
|
|
%V2 = cast int* %V to sbyte*
|
|
|
|
store sbyte 0, sbyte* %V2
|
|
|
|
store int 1234567, int* %V
|
|
|
|
%X = load int* %V
|
|
|
|
ret int %X
|
|
|
|
}
|