1/// Use BIT() helper macro instead of hardcoding using bitshifting
2///
3// Confidence: High
4// Copyright (c) 2017 Intel Corporation
5//
6// SPDX-License-Identifier: Apache-2.0
7
8virtual patch
9
10@depends on patch && !(file in "ext")@
11expression A;
12@@
13
14- (1 << A)
15+ BIT(A)
16