From f32f0a7146986805d711e05460d3088d290a3abb Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Wed, 22 Jul 2009 23:24:42 +0000 Subject: [PATCH] Fix test breakage. llvm-svn: 76816 --- clang/lib/Sema/SemaExpr.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp index bb3f21a..5d4fbd8 100644 --- a/clang/lib/Sema/SemaExpr.cpp +++ b/clang/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)); } -- 2.7.4