[LibFuzzer] Fix `-Wpedantic` warning reported by Eric Christopher.
authorDan Liew <dan@su-root.co.uk>
Tue, 11 Jul 2017 18:27:48 +0000 (18:27 +0000)
committerDan Liew <dan@su-root.co.uk>
Tue, 11 Jul 2017 18:27:48 +0000 (18:27 +0000)
commit2d06d7e512b6f1d28145154afeabc074e36d24f2
tree08c3b2e6ab3628d8de89cf9d98bdff3da833db18
parentb76e4d12f46da43369f113712f73685b6c4a0d6f
[LibFuzzer] Fix `-Wpedantic` warning reported by Eric Christopher.

The warning is reproducible with GCC 4.8. Thanks to David Blaikie for
the suggested fix.

The reported warning was

```
/usr/local/google/home/echristo/sources/llvm/lib/Fuzzer/FuzzerExtFunctions.def:29:10: warning: ISO C++ forbids casting between pointer-to-function and pointer-to-object [-Wpedantic]
 EXT_FUNC(__lsan_enable, void, (), false);
          ^
/usr/local/google/home/echristo/sources/llvm/lib/Fuzzer/FuzzerExtFunctionsWeak.cpp:44:24: note: in definition of macro ‘EXT_FUNC’
   CheckFnPtr((void *)::NAME, #NAME, WARN);
                        ^
```

Differential Revision: https://reviews.llvm.org/D35243

llvm-svn: 307686
llvm/lib/Fuzzer/FuzzerExtFunctionsWeak.cpp