From: Eli Friedman Date: Wed, 22 Jul 2009 23:24:42 +0000 (+0000) Subject: Fix test breakage. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6016cb2d1e99960675e4c4bb97f6f4ecdff97818;p=clang Fix test breakage. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76816 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index bb3f21a212..5d4fbd8080 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -1703,6 +1703,8 @@ Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, // build a built-in operation. } + Input.release(); + Input = Arg; return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); }