[llvm-commits] [compiler-rt] r152773 - /compiler-rt/trunk/lib/asan/asan_mac.cc
David Blaikie
dblaikie at gmail.com
Wed Mar 14 21:53:02 PDT 2012
On Wed, Mar 14, 2012 at 9:39 PM, Chad Rosier <mcrosier at apple.com> wrote:
> Thanks, Kostya. Fee free to revert r152765, which will reapply David's -Wnull-conversion commit (Lubos Lunak's patch). If you don't get to it, I'll take care of it first thing in the morning.
Thanks Chad & Kostya for the help - I'll revert 152765 in a moment.
- David
>
> Chad
>
> On Mar 14, 2012, at 9:26 PM, Kostya Serebryany wrote:
>
>> Author: kcc
>> Date: Wed Mar 14 23:26:00 2012
>> New Revision: 152773
>>
>> URL: http://llvm.org/viewvc/llvm-project?rev=152773&view=rev
>> Log:
>> [asan] one more -Wnull-conversion fix
>>
>> Modified:
>> compiler-rt/trunk/lib/asan/asan_mac.cc
>>
>> Modified: compiler-rt/trunk/lib/asan/asan_mac.cc
>> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_mac.cc?rev=152773&r1=152772&r2=152773&view=diff
>> ==============================================================================
>> --- compiler-rt/trunk/lib/asan/asan_mac.cc (original)
>> +++ compiler-rt/trunk/lib/asan/asan_mac.cc Wed Mar 14 23:26:00 2012
>> @@ -93,7 +93,7 @@
>> uintptr_t start, end;
>> bool available = true;
>> while (procmaps.Next(&start, &end,
>> - /*offset*/NULL, /*filename*/NULL, /*size*/NULL)) {
>> + /*offset*/NULL, /*filename*/NULL, /*filename_size*/0)) {
>> if (!IntervalsAreSeparate(start, end,
>> kLowShadowBeg - kMmapGranularity,
>> kHighShadowEnd)) {
>>
>>
>> _______________________________________________
>> llvm-commits mailing list
>> llvm-commits at cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
More information about the llvm-commits
mailing list