From 82509d60ec81c9a27b4bf757d9fcf4d73a87a619 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 13 Jan 2022 12:31:28 +0800 Subject: [PATCH] remove obvious comment --- nac3core/src/codegen/irrt/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/nac3core/src/codegen/irrt/mod.rs b/nac3core/src/codegen/irrt/mod.rs index 8a84642..7b3b44b 100644 --- a/nac3core/src/codegen/irrt/mod.rs +++ b/nac3core/src/codegen/irrt/mod.rs @@ -13,7 +13,6 @@ pub fn load_irrt(ctx: &Context) -> Module { "irrt_bitcode_buffer", ); let irrt_mod = Module::parse_bitcode_from_buffer(&bitcode_buf, ctx).unwrap(); - // add alwaysinline attributes to power function to help them get inlined let inline_attr = Attribute::get_named_enum_kind_id("alwaysinline"); for symbol in &["__nac3_irrt_int_exp_int32_t", "__nac3_irrt_int_exp_int64_t"] { let function = irrt_mod.get_function(symbol).unwrap();