We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0633ab4 commit 191ee1fCopy full SHA for 191ee1f
src/python/crash_analysis/crash_analyzer.py
@@ -73,8 +73,14 @@
73
# being used in LLVM and C++, as there is no "signed int" type.
74
'Integer-overflow',
75
'Invalid-bool-value',
76
+ 'Invalid-builtin-use',
77
+ 'Incorrect-function-pointer-type',
78
+ 'Invalid-enum-value',
79
+ 'Invalid-null-argument',
80
+ 'Invalid-null-return',
81
'Misaligned-address',
82
'No-return-value',
83
+ 'Non-positive-vla-bound-value',
84
'Pointer-overflow',
85
'Potential-null-reference',
86
'Undefined-shift',
@@ -83,6 +89,7 @@
89
# issues may cause some bugs, unless it's not an intended overflow, e.g. in
90
# math of crpto libraries.
91
'Unsigned-integer-overflow',
92
+ 'Unreachable code',
93
]
87
94
UBSAN_CRASH_TYPES_SECURITY = [
88
95
'Bad-cast',
0 commit comments