1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Transforms/DeadStoreElimination/no-targetdata.ll
Dan Gohman 5fa04f2707 Delete useless trailing semicolons.
llvm-svn: 92740
2010-01-05 17:55:26 +00:00

16 lines
321 B
LLVM

; RUN: opt %s -dse -S | FileCheck %s
declare void @test1f()
define void @test1(i32* noalias %p) {
store i32 1, i32* %p
call void @test1f()
store i32 2, i32 *%p
ret void
; CHECK: define void @test1
; CHECK-NOT: store
; CHECK-NEXT: call void
; CHECK-NEXT: store i32 2
; CHECK-NEXT: ret void
}