OLD | NEW |
1 ############################################################################# | 1 ############################################################################# |
2 # UBSan blacklist. | 2 # UBSan blacklist. |
3 | 3 |
4 ############################################################################# | 4 ############################################################################# |
5 # YASM does some funny things that UBsan doesn't like. | 5 # YASM does some funny things that UBsan doesn't like. |
6 # https://crbug.com/489901 | 6 # https://crbug.com/489901 |
7 src:*/third_party/yasm/* | 7 src:*/third_party/yasm/* |
8 | 8 |
9 ############################################################################# | 9 ############################################################################# |
10 # V8 gives too many false positives. Ignore them for now. | 10 # V8 gives too many false positives. Ignore them for now. |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 src:*/third_party/icu/source/common/rbbitblb.cpp | 62 src:*/third_party/icu/source/common/rbbitblb.cpp |
63 src:*/third_party/icu/source/common/ucmndata.c | 63 src:*/third_party/icu/source/common/ucmndata.c |
64 | 64 |
65 ############################################################################# | 65 ############################################################################# |
66 # Delete in destructor on a this where this == nullptr | 66 # Delete in destructor on a this where this == nullptr |
67 fun:*re2*RegexpD* | 67 fun:*re2*RegexpD* |
68 | 68 |
69 ############################################################################# | 69 ############################################################################# |
70 # Harmless float division by zero. | 70 # Harmless float division by zero. |
71 fun:*RendererFrameManager*CullUnlockedFrames* | 71 fun:*RendererFrameManager*CullUnlockedFrames* |
72 | |
73 ############################################################################# | |
74 # libc++ __tree and map are not UBSAN clean | |
75 # https://llvm.org/bugs/show_bug.cgi?id=19302 | |
76 src:*/third_party/libc\+\+/trunk/include/__tree | |
77 src:*/third_party/libc\+\+/trunk/include/map | |
OLD | NEW |