From: Vedant Kumar Date: Mon, 7 Nov 2016 02:39:37 +0000 (+0000) Subject: [lldb] Fix -Waggressive-loop-optimizations warning X-Git-Tag: llvmorg-4.0.0-rc1~5373 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ba1db9f787a373677cb9c08c0e7b7ad305604d5;p=platform%2Fupstream%2Fllvm.git [lldb] Fix -Waggressive-loop-optimizations warning We shouldn't access past the end of an array, even if we think that the layout of the struct containing the array is always what we expect. The compiler is free to optimize away the stores as undefined behavior, and in fact, GCC 6.2.1 claims it will do exactly this. llvm-svn: 286093 --- diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp index 04bed4e..45d3b12 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp @@ -667,8 +667,12 @@ public: // x0-x29 + fp + lr + sp + pc (== 33 64-bit registers) plus cpsr (1 // 32-bit register) if (count >= (33 * 2) + 1) { - for (uint32_t i = 0; i < 33; ++i) + for (uint32_t i = 0; i < 29; ++i) gpr.x[i] = data.GetU64(&offset); + gpr.fp = data.GetU64(&offset); + gpr.lr = data.GetU64(&offset); + gpr.sp = data.GetU64(&offset); + gpr.pc = data.GetU64(&offset); gpr.cpsr = data.GetU32(&offset); SetError(GPRRegSet, Read, 0); }