Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 521062 Details for
Bug 648802
dev-lang/rust-1.23.0-r1 - src/src/binaryen/src/support/command-line.cpp:112:11: error: this statement may fall through [-Werror=implicit-fallthrough=]
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for one of the failing places
optimizer-shared.cpp.patch (text/plain), 1.06 KB, created by
Thomas
on 2018-02-26 05:45:14 UTC
(
hide
)
Description:
patch for one of the failing places
Filename:
MIME Type:
Creator:
Thomas
Created:
2018-02-26 05:45:14 UTC
Size:
1.06 KB
patch
obsolete
>--- rustc-1.23.0-src/src/binaryen/src/emscripten-optimizer/optimizer-shared.cpp.orig 2018-01-01 22:53:02.000000000 +0100 >+++ rustc-1.23.0-src/src/binaryen/src/emscripten-optimizer/optimizer-shared.cpp 2018-02-26 06:16:01.722911001 +0100 >@@ -156,9 +156,19 @@ AsmSign detectSign(Ref node, IString min > case '>': { > if (op == TRSHIFT) return ASM_UNSIGNED; > } // fallthrough >- case '|': case '&': case '^': case '<': case '=': case '!': return ASM_SIGNED; >- case '+': case '-': return ASM_FLEXIBLE; >- case '*': case '/': return ASM_NONSIGNED; // without a coercion, these are double >+ case '|': // fallthrough >+ case '&': // fallthrough >+ case '^': // fallthrough >+ case '<': // fallthrough >+ case '=': // fallthrough >+ case '!': >+ return ASM_SIGNED; >+ case '+': // fallthrough >+ case '-': >+ return ASM_FLEXIBLE; >+ case '*': >+ case '/': >+ return ASM_NONSIGNED; // without a coercion, these are double > default: abort_on(node); > } > } else if (type == UNARY_PREFIX) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 648802
: 521062 |
521524