Bug 1689990 - Part 9: Remove unused enums BarrierKind and ReprotectCode. r=jandem

Differential Revision: https://phabricator.services.mozilla.com/D103645
This commit is contained in:
André Bargull 2021-02-05 16:11:17 +00:00
Родитель 896cad69c0
Коммит 595a2a31d0
1 изменённых файлов: 0 добавлений и 15 удалений

Просмотреть файл

@ -907,21 +907,6 @@ static constexpr ABIFunctionType MakeABIFunctionType(
return ABIFunctionType(detail::MakeABIFunctionType(ret, args));
}
enum class BarrierKind : uint32_t {
// No barrier is needed.
NoBarrier,
// The barrier only has to check the value's type tag is in the TypeSet.
// Specific object types don't have to be checked.
TypeTagOnly,
// Check if the value is in the TypeSet, including the object type if it's
// an object.
TypeSet
};
enum ReprotectCode { Reprotect = true, DontReprotect = false };
// Rounding modes for round instructions.
enum class RoundingMode { Down, Up, NearestTiesToEven, TowardsZero };