From f76a8ac5a95c7f1fc67b7787062ee970ba340656 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Tue, 21 Mar 2017 17:15:50 +0000 Subject: [PATCH] Remove stray paren that got in while attempting to fix the build for AttributeList llvm-svn: 298402 --- .../RenderScriptRuntime/RenderScriptx86ABIFixups.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp index 58428600652b..0e475e0b3d78 100644 --- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp +++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp @@ -266,7 +266,7 @@ bool fixupRSAllocationStructByValCalls(llvm::Module &module) { // inspect all of the arguments in the call for (auto &arg : func->args()) { if (arg.hasByValAttr()) { - arg.removeAttr(llvm::Attribute::ByVal)); + arg.removeAttr(llvm::Attribute::ByVal); changed = true; } }