We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b298254 commit d14effaCopy full SHA for d14effa
src/lib.rs
@@ -95,6 +95,7 @@ impl CodegenBackend for GccCodegenBackend {
95
let _int128_ty = check_context.new_c_type(CType::UInt128t);
96
check_context.compile();
97
*self.supports_128bit_integers.lock().expect("lock") = check_context.get_last_error() == Ok(None);
98
+ println!("128-bit integers are supported: {}", self.supports_128bit_integers.lock().expect("lock"));
99
}
100
101
fn codegen_crate<'tcx>(&self, tcx: TyCtxt<'tcx>, metadata: EncodedMetadata, need_metadata_module: bool) -> Box<dyn Any> {
0 commit comments