Closed
Bug 1476948
Opened 7 years ago
Closed 7 years ago
Suppress clang-cl warnings from the MIDL generated code in accessible/
Categories
(Core :: Disability Access APIs, enhancement)
Core
Disability Access APIs
Tracking
()
RESOLVED
FIXED
mozilla63
Tracking | Status | |
---|---|---|
firefox63 | --- | fixed |
People
(Reporter: emk, Assigned: emk)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
Although we don't have to suppress -Wextra-tokens (bug 1222531) anymore, some new warnings are added from the generated code.
Comment hidden (mozreview-request) |
Assignee | ||
Updated•7 years ago
|
Assignee: nobody → VYV03354
Status: NEW → ASSIGNED
Comment hidden (mozreview-request) |
![]() |
||
Updated•7 years ago
|
Attachment #8993357 -
Flags: review?(core-build-config-reviews) → review?(nfroyd)
![]() |
||
Comment 3•7 years ago
|
||
mozreview-review |
Comment on attachment 8993357 [details]
Bug 1476948 - Suppress clang-cl warnings from the MIDL generated code in accessible/.
https://reviewboard.mozilla.org/r/258134/#review265104
::: accessible/interfaces/gecko/moz.build:25
(Diff revision 2)
> -#
> -# #endif !_MIDL_USE_GUIDDEF_
> -#
> -# which clang-cl complains about. MSVC doesn't, so turn this warning off.
> if CONFIG['CC_TYPE'] == 'clang-cl':
> - CFLAGS += ['-Wno-extra-tokens']
> + CFLAGS += [
Has this warning gone away? (Here and other places.)
Attachment #8993357 -
Flags: review?(nfroyd) → review+
Assignee | ||
Comment 4•7 years ago
|
||
mozreview-review-reply |
Comment on attachment 8993357 [details]
Bug 1476948 - Suppress clang-cl warnings from the MIDL generated code in accessible/.
https://reviewboard.mozilla.org/r/258134/#review265104
> Has this warning gone away? (Here and other places.)
Yes, generated files no longer contain `#endif !_MIDL_USE_GUIDDEF_` amd I didn' see `-Wextra-tokens` warning.
Assignee | ||
Updated•7 years ago
|
Summary: Suppress clang-cl warnings from the MIDL generated code in accessible/interfaces/ → Suppress clang-cl warnings from the MIDL generated code in accessible/
Pushed by VYV03354@nifty.ne.jp:
https://hg.mozilla.org/integration/autoland/rev/7fd7b91b7c2a
Suppress clang-cl warnings from the MIDL generated code in accessible/. r=froydnj
Comment 6•7 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
status-firefox63:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla63
Comment 7•7 years ago
|
||
Thank you for fixing some of the compiler warnings!
== Change summary for alert #14568 (as of Wed, 25 Jul 2018 08:35:33 GMT) ==
Improvements:
17% compiler warnings windows2012-32 debug static-analysis 1,293.25 -> 1,079.00
16% compiler warnings windows2012-32 opt static-analysis 1,299.25 -> 1,085.00
16% compiler warnings windows2012-64 debug static-analysis 1,320.25 -> 1,106.00
16% compiler warnings windows2012-64 opt static-analysis 1,326.25 -> 1,112.00
For up to date results, see: https://treeherder.mozilla.org/perf.html#/alerts?id=14568
You need to log in
before you can comment on or make changes to this bug.
Description
•