gccrs: Add missing fn_once_output langitem

gcc/rust/ChangeLog:

	* util/rust-lang-item.h: Add handling for `fn_once_output`.
This commit is contained in:
Philip Herron
2022-10-17 16:50:34 +01:00
committed by Arthur Cohen
parent b326cced19
commit ed75e142a7

View File

@@ -75,6 +75,7 @@ public:
// functions
FN_ONCE,
FN_ONCE_OUTPUT,
UNKNOWN,
};
@@ -225,6 +226,10 @@ public:
{
return ItemType::FN_ONCE;
}
else if (item.compare ("fn_once_output") == 0)
{
return ItemType::FN_ONCE_OUTPUT;
}
return ItemType::UNKNOWN;
}
@@ -305,6 +310,8 @@ public:
return "const_slice_ptr";
case FN_ONCE:
return "fn_once";
case FN_ONCE_OUTPUT:
return "fn_once_output";
case UNKNOWN:
return "<UNKNOWN>";