Skip to content

Commit 397d9df

Browse files
authored
Merge pull request #695 from github/lcartey/rule-8-3-linker-aware
Rule 8.3: Remove false positives for declarations that don't share a link target
2 parents 2db3484 + 0705aa6 commit 397d9df

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

c/misra/src/rules/RULE-8-3/DeclarationsOfAnObjectSameNameAndType.ql

+12
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,19 @@ where
2121
not isExcluded(decl2, Declarations4Package::declarationsOfAnObjectSameNameAndTypeQuery()) and
2222
not decl1 = decl2 and
2323
not decl1.getVariable().getDeclaringType().isAnonymous() and
24+
// Declarations are for the same qualified name
25+
// Note: decl1.getVariable() = decl2.getVariable() does not work for common cases where an aliased
26+
// type is used.
2427
decl1.getVariable().getQualifiedName() = decl2.getVariable().getQualifiedName() and
28+
// As we use qualified name, require that they share a common link target to ensure they are
29+
// for the same object
30+
(
31+
decl1.getVariable().(GlobalVariable).getALinkTarget() =
32+
decl2.getVariable().(GlobalVariable).getALinkTarget()
33+
or
34+
decl1.getVariable().(Field).getDeclaringType().(Class).getALinkTarget() =
35+
decl2.getVariable().(Field).getDeclaringType().(Class).getALinkTarget()
36+
) and
2537
not typesCompatible(decl1.getType(), decl2.getType())
2638
select decl1,
2739
"The object $@ of type " + decl1.getType().toString() +
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- `RULE-8-3` - `DeclarationsOfAnObjectSameNameAndType.ql`
2+
- Remove false positives where two conflicting declarations are never linked together.

0 commit comments

Comments
 (0)