Remove extern crate bitflags from a couple of crates.

This commit is contained in:
Nicholas Nethercote
2024-04-29 16:11:04 +10:00
parent 7418aa1a07
commit 1ab34f063b
6 changed files with 4 additions and 9 deletions

View File

@@ -49,7 +49,7 @@ pub struct CodegenFnAttrs {
#[derive(Clone, Copy, PartialEq, Eq, TyEncodable, TyDecodable, HashStable)]
pub struct CodegenFnAttrFlags(u32);
bitflags! {
bitflags::bitflags! {
impl CodegenFnAttrFlags: u32 {
/// `#[cold]`: a hint to LLVM that this function, when called, is never on
/// the hot path.