From 20c78979303fa130b35a95387d0f23dcbfcc6006 Mon Sep 17 00:00:00 2001 From: Karthik Bhat Date: Fri, 14 Aug 2015 04:17:23 +0000 Subject: [PATCH] Add support for cross block dse. This patch enables dead stroe elimination across basicblocks. Example: define void @test_02(i32 %N) { %1 = alloca i32 store i32 %N, i32* %1 store i32 10, i32* @x %2 = load i32, i32* %1 %3 = icmp ne i32 %2, 0 br i1 %3, label %4, label %5 ;