From 89809fdde3b2d38c2ff87c6407358f95965e4b3e Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Thu, 20 Dec 2012 02:10:32 +0100 Subject: [PATCH] Cleanup: Silence another "maybe-undefined" warning. Also makes the assert in line 775 actually work. --- gen/asmstmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen/asmstmt.cpp b/gen/asmstmt.cpp index 168897ed..7c117ca0 100644 --- a/gen/asmstmt.cpp +++ b/gen/asmstmt.cpp @@ -552,7 +552,7 @@ void AsmBlockStatement::toIR(IRState* p) // location of the special value determining the goto label // will be set if post-asm dispatcher block is needed - llvm::AllocaInst* jump_target; + llvm::AllocaInst* jump_target = 0; { FuncDeclaration* fd = gIR->func()->decl;