diff options
Diffstat (limited to 'llvm/test/CodeGen/Generic/undef-phi.ll')
-rw-r--r-- | llvm/test/CodeGen/Generic/undef-phi.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Generic/undef-phi.ll b/llvm/test/CodeGen/Generic/undef-phi.ll index 10899f9fa2d..067f34ae67d 100644 --- a/llvm/test/CodeGen/Generic/undef-phi.ll +++ b/llvm/test/CodeGen/Generic/undef-phi.ll @@ -13,14 +13,14 @@ entry: for.body: %stack.addr.02 = phi %struct.xx_stack* [ %0, %for.body ], [ %stack, %entry ] - %next = getelementptr inbounds %struct.xx_stack* %stack.addr.02, i64 0, i32 1 + %next = getelementptr inbounds %struct.xx_stack, %struct.xx_stack* %stack.addr.02, i64 0, i32 1 %0 = load %struct.xx_stack** %next, align 8 %tobool = icmp eq %struct.xx_stack* %0, null br i1 %tobool, label %for.end, label %for.body for.end: %top.0.lcssa = phi %struct.xx_stack* [ undef, %entry ], [ %stack.addr.02, %for.body ] - %first = getelementptr inbounds %struct.xx_stack* %top.0.lcssa, i64 0, i32 0 + %first = getelementptr inbounds %struct.xx_stack, %struct.xx_stack* %top.0.lcssa, i64 0, i32 0 %1 = load i32* %first, align 4 ret i32 %1 } |