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:
Kuba Brecka 2015-02-24 11:12:44 +00:00
parent f7d36ac5f0
commit 90c8b0e092
1 changed files with 1 additions and 0 deletions

View File

@ -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