mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-21 13:29:57 +08:00
sanitizer_linux.cc (MemoryMappingLayout::Next): Cherry pick upstream r182922.
2013-06-03 Christophe Lyon <christophe.lyon@linaro.org> * sanitizer_common/sanitizer_linux.cc (MemoryMappingLayout::Next): Cherry pick upstream r182922. From-SVN: r199606
This commit is contained in:
parent
4096c0c201
commit
634cfa2ba8
@ -1,3 +1,8 @@
|
|||||||
|
2013-06-03 Christophe Lyon <christophe.lyon@linaro.org>
|
||||||
|
|
||||||
|
* sanitizer_common/sanitizer_linux.cc (MemoryMappingLayout::Next):
|
||||||
|
Cherry pick upstream r182922.
|
||||||
|
|
||||||
2013-05-07 Christophe Lyon <christophe.lyon@linaro.org>
|
2013-05-07 Christophe Lyon <christophe.lyon@linaro.org>
|
||||||
|
|
||||||
* configure.tgt: Add ARM pattern.
|
* configure.tgt: Add ARM pattern.
|
||||||
|
@ -410,7 +410,9 @@ bool MemoryMappingLayout::Next(uptr *start, uptr *end, uptr *offset,
|
|||||||
CHECK_EQ(*current_++, ' ');
|
CHECK_EQ(*current_++, ' ');
|
||||||
while (IsDecimal(*current_))
|
while (IsDecimal(*current_))
|
||||||
current_++;
|
current_++;
|
||||||
CHECK_EQ(*current_++, ' ');
|
// Qemu may lack the trailing space.
|
||||||
|
// http://code.google.com/p/address-sanitizer/issues/detail?id=160
|
||||||
|
// CHECK_EQ(*current_++, ' ');
|
||||||
// Skip spaces.
|
// Skip spaces.
|
||||||
while (current_ < next_line && *current_ == ' ')
|
while (current_ < next_line && *current_ == ' ')
|
||||||
current_++;
|
current_++;
|
||||||
|
Loading…
Reference in New Issue
Block a user