diff options
Diffstat (limited to 'clang/lib/Sema/SemaStmt.cpp')
-rw-r--r-- | clang/lib/Sema/SemaStmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaStmt.cpp b/clang/lib/Sema/SemaStmt.cpp index 6595b881220..4a5facb39cc 100644 --- a/clang/lib/Sema/SemaStmt.cpp +++ b/clang/lib/Sema/SemaStmt.cpp @@ -666,7 +666,7 @@ Sema::ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, } Action::OwningStmtResult -Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc,SourceLocation StarLoc, +Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, ExprArg DestExp) { // Convert operand to void* Expr* E = DestExp.takeAs<Expr>(); @@ -676,7 +676,7 @@ Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc,SourceLocation StarLoc, if (DiagnoseAssignmentResult(ConvTy, StarLoc, Context.VoidPtrTy, ETy, E, "passing")) return StmtError(); - return Owned(new (Context) IndirectGotoStmt(E)); + return Owned(new (Context) IndirectGotoStmt(GotoLoc, E)); } Action::OwningStmtResult |