blob: 159379ee8d0b42fd9c261c415b7516e8d1c77f27 [file] [log] [blame]
/// Use BIT() helper macro instead of hardcoding using bitshifting
///
// Confidence: High
// Copyright (c) 2017 Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
virtual patch
@depends on patch && !(file in "ext")@
expression A;
@@
- (1 << A)
+ BIT(A)