summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime
diff options
context:
space:
mode:
authorMark de Wever <koraq@xs4all.nl>2020-01-01 17:23:21 +0100
committerMark de Wever <koraq@xs4all.nl>2020-01-01 20:01:37 +0100
commit8dc7b982b4556c243e0502e6e230bdd53ddd65ff (patch)
tree518a39bbece25299e56350272605c7a9bd8f60c6 /lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime
parent9b24dad6c06bba771b805ffd9bd047af25317e52 (diff)
downloadbcm5719-llvm-8dc7b982b4556c243e0502e6e230bdd53ddd65ff.tar.gz
bcm5719-llvm-8dc7b982b4556c243e0502e6e230bdd53ddd65ff.zip
[NFC] Fixes -Wrange-loop-analysis warnings
This avoids new warnings due to D68912 adds -Wrange-loop-analysis to -Wall. Differential Revision: https://reviews.llvm.org/D71857
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime')
-rw-r--r--lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
index a6d225d2fbd..4ddff3ad9c4 100644
--- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
+++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
@@ -72,7 +72,7 @@ bool isRSAllocationTyCallSite(llvm::Module &module, llvm::CallInst *call_inst) {
(void)module;
if (!call_inst->hasByValArgument())
return false;
- for (const auto &param : call_inst->operand_values())
+ for (const auto *param : call_inst->operand_values())
if (isRSAllocationPtrTy(param->getType()))
return true;
return false;
OpenPOWER on IntegriCloud