diff options
| author | Antoni Boucher <bouanto@zoho.com> | 2023-10-11 20:55:32 -0400 |
|---|---|---|
| committer | Antoni Boucher <bouanto@zoho.com> | 2023-10-11 20:55:32 -0400 |
| commit | 100dfced2067925df97cf203d696559be5c828b9 (patch) | |
| tree | 2a224429ec4fa5356c079aa43744f71c17a63dd9 | |
| parent | 9030b704214d4b63f56498ee2af4c190a5287ac6 (diff) | |
| download | rust-100dfced2067925df97cf203d696559be5c828b9.tar.gz rust-100dfced2067925df97cf203d696559be5c828b9.zip | |
Fix #[inline(always)] attribute
| -rw-r--r-- | src/attributes.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/attributes.rs b/src/attributes.rs index 971e019a4f6..6159971cfaa 100644 --- a/src/attributes.rs +++ b/src/attributes.rs @@ -53,6 +53,9 @@ pub fn from_fn_attrs<'gcc, 'tcx>( codegen_fn_attrs.inline }; if let Some(attr) = inline_attr(cx, inline) { + if let FnAttribute::AlwaysInline = attr { + func.add_attribute(FnAttribute::Inline); + } func.add_attribute(attr); } |
