From 6016cb2d1e99960675e4c4bb97f6f4ecdff97818 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Wed, 22 Jul 2009 23:24:42 +0000 Subject: [PATCH] Fix test breakage. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76816 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaExpr.cpp | 2 ++ 1 file changed, 2 insertions(+) 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)); } -- 2.40.0