Try to unbreak sanitizer-x86_64-linux-autoconf after r230318
The buildbot failed to build with
error: variable ‘enable_fp’ set but not used [-Werror=unused-but-set-variable]
let's add a `(void)enable_fp;`.
llvm-svn: 230323
This commit is contained in:
parent
f7d36ac5f0
commit
90c8b0e092
|
|
@ -295,6 +295,7 @@ extern "C" void* _ReturnAddress(void);
|
|||
do { \
|
||||
volatile uptr enable_fp; \
|
||||
enable_fp = GET_CURRENT_FRAME(); \
|
||||
(void)enable_fp; \
|
||||
} while (0)
|
||||
|
||||
#endif // SANITIZER_DEFS_H
|
||||
|
|
|
|||
Loading…
Reference in New Issue