After investigation by @asbirlea, the issue that caused the revert appears to be an issue in the original source, rather than a problem with the compiler. This patch enables MemorySSA DSE again. This reverts commit 915310bf14cbac58a81fd60e0fa9dc8d341108e2.
16 lines
319 B
LLVM
16 lines
319 B
LLVM
; RUN: opt -S < %s -dse | 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
|
|
}
|