| 22 | }; |
| 23 | |
| 24 | static unsigned int BugToFlag(int Bug) |
| 25 | { |
| 26 | unsigned int Result; |
| 27 | dbg_assert((unsigned)Bug < 8 * sizeof(Result), "invalid shift"); |
| 28 | Result = (1 << Bug); |
| 29 | return Result; |
| 30 | } |
| 31 | |
| 32 | static unsigned int IsBugFlagSet(int Bug, unsigned int BugFlags) |
| 33 | { |
no outgoing calls
no test coverage detected