diff options
Diffstat (limited to 'llvm/test/Transforms/GlobalOpt/crash.ll')
-rw-r--r-- | llvm/test/Transforms/GlobalOpt/crash.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Transforms/GlobalOpt/crash.ll b/llvm/test/Transforms/GlobalOpt/crash.ll index 0bef820dd2f..c1458a5323e 100644 --- a/llvm/test/Transforms/GlobalOpt/crash.ll +++ b/llvm/test/Transforms/GlobalOpt/crash.ll @@ -35,7 +35,7 @@ bb.nph.i: unreachable xx: - %E = load %T** @switch_inf, align 8 + %E = load %T*, %T** @switch_inf, align 8 unreachable } @@ -46,7 +46,7 @@ declare noalias i8* @malloc(i64) nounwind @permute_bitrev.bitrev = internal global i32* null, align 8 define void @permute_bitrev() nounwind { entry: - %tmp = load i32** @permute_bitrev.bitrev, align 8 + %tmp = load i32*, i32** @permute_bitrev.bitrev, align 8 %conv = sext i32 0 to i64 %mul = mul i64 %conv, 4 %call = call i8* @malloc(i64 %mul) @@ -72,7 +72,7 @@ declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) nounwind define void @icmp_user_of_stored_once() nounwind ssp { entry: - %tmp4 = load i32*** @g_52, align 8 + %tmp4 = load i32**, i32*** @g_52, align 8 store i32** @g_90, i32*** @g_52 %cmp17 = icmp ne i32*** undef, @g_52 ret void |