Cast the fifth arg to mremap to void *
authorAlexey Samsonov <vonosmas@gmail.com>
Tue, 2 Feb 2016 18:36:28 +0000 (18:36 +0000)
committerAlexey Samsonov <vonosmas@gmail.com>
Tue, 2 Feb 2016 18:36:28 +0000 (18:36 +0000)
commitf54e67dcc9876c8a0259e45e5c6823535d8ac384
tree43af2a351b520c9462107ddf991aec09121085da
parentecefe5a81fd01922185afdd4f47e8ff231e34a81
Cast the fifth arg to mremap to void *

Summary:
Since the prototype of mremap is

```
void *mremap(void *old_address, size_t old_size, size_t new_size,
             int flags, ... /* void *new_address*/);
```
we need to cast new_address to void * when calling mremap.  Otherwise,
the wrong value will be passed to mremap on x32.

Patch by H.J Lu!

Reviewers: kcc, eugenis, samsonov

Subscribers: samsonov, llvm-commits

Differential Revision: http://reviews.llvm.org/D16805

llvm-svn: 259540
compiler-rt/lib/cfi/cfi.cc