mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 04:55:22 +03:00
f7c6a2cf11
In the LLVM-C API, boolean values are passed as `typedef int LLVMBool`, but our Rust-side typedef was using `c_uint` instead. Signed and unsigned integers have the same ABI on most platforms, but that isn't universally true, so we should prefer to be consistent with LLVM.