[llvm] r262994 - Use lto_bool_t instead of a raw `bool` (fixup for r262977).
Sean Silva via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 8 20:05:29 PST 2016
Author: silvas
Date: Tue Mar 8 22:05:28 2016
New Revision: 262994
URL: http://llvm.org/viewvc/llvm-project?rev=262994&view=rev
Log:
Use lto_bool_t instead of a raw `bool` (fixup for r262977).
Hopefully this should bring
llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast back to life.
Modified:
llvm/trunk/include/llvm-c/lto.h
Modified: llvm/trunk/include/llvm-c/lto.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/lto.h?rev=262994&r1=262993&r2=262994&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/lto.h (original)
+++ llvm/trunk/include/llvm-c/lto.h Tue Mar 8 22:05:28 2016
@@ -739,7 +739,7 @@ extern void thinlto_debug_options(const
*
* \since LTO_API_VERSION=18
*/
-extern bool lto_module_is_thinlto(lto_module_t mod);
+extern lto_bool_t lto_module_is_thinlto(lto_module_t mod);
/**
* Adds a symbol to the list of global symbols that must exist in the final
More information about the llvm-commits
mailing list