This patch moves the tests for the old MemDepAnalysis based DSE implementation to the MemDepAnalysis subdirectory and updates them to pass -enable-dse-memoryssa=false. This is in preparation for the switch to MemorySSA-backed DSE.
16 lines
347 B
LLVM
16 lines
347 B
LLVM
; RUN: opt -S < %s -dse -enable-dse-memoryssa=false | FileCheck %s
|
|
|
|
declare void @llvm.sideeffect()
|
|
|
|
; Dead store elimination across a @llvm.sideeffect.
|
|
|
|
; CHECK-LABEL: dse
|
|
; CHECK: store
|
|
; CHECK-NOT: store
|
|
define void @dse(float* %p) {
|
|
store float 0.0, float* %p
|
|
call void @llvm.sideeffect()
|
|
store float 0.0, float* %p
|
|
ret void
|
|
}
|