-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix ABI flags in RISC-V/LoongArch ELF file generated by rustc #114332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -445,6 +445,7 @@ symbols! { | |
bridge, | ||
bswap, | ||
builtin_syntax, | ||
c, | ||
c_str, | ||
c_str_literals, | ||
c_unwind, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,14 @@ LL | let (A(A(..) | B(a), _) | B(A(a, _) | B(a))) = Y; | |
| | | ||
| pattern doesn't bind `a` | ||
|
||
error[E0408]: variable `c` is not bound in all patterns | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what happened here... I assume this is related to adding There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah I see, I'll fix it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
--> $DIR/missing-bindings.rs:45:12 | ||
| | ||
LL | let (A(A(a, b) | B(c), d) | B(e)) = Y; | ||
| ^^^^^^^ - variable not in all patterns | ||
| | | ||
| pattern doesn't bind `c` | ||
|
||
error[E0408]: variable `a` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:45:22 | ||
| | ||
|
@@ -96,12 +104,12 @@ LL | let (A(A(a, b) | B(c), d) | B(e)) = Y; | |
| variable not in all patterns | ||
|
||
error[E0408]: variable `c` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:45:12 | ||
--> $DIR/missing-bindings.rs:45:33 | ||
| | ||
LL | let (A(A(a, b) | B(c), d) | B(e)) = Y; | ||
| ^^^^^^^ - variable not in all patterns | ||
| | | ||
| pattern doesn't bind `c` | ||
| - ^^^^ pattern doesn't bind `c` | ||
| | | ||
| variable not in all patterns | ||
|
||
error[E0408]: variable `d` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:45:33 | ||
|
@@ -135,14 +143,6 @@ LL | let (A(A(a, b) | B(c), d) | B(e)) = Y; | |
| | | ||
| variable not in all patterns | ||
|
||
error[E0408]: variable `c` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:45:33 | ||
| | ||
LL | let (A(A(a, b) | B(c), d) | B(e)) = Y; | ||
| - ^^^^ pattern doesn't bind `c` | ||
| | | ||
| variable not in all patterns | ||
|
||
error[E0408]: variable `a` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:61:29 | ||
| | ||
|
@@ -185,6 +185,28 @@ LL | B(b), | |
LL | B(_) | ||
| ^^^^ pattern doesn't bind `b` | ||
|
||
error[E0408]: variable `c` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:57:13 | ||
| | ||
LL | / V1( | ||
LL | | | ||
LL | | | ||
LL | | A( | ||
... | | ||
LL | | B(Ok(a) | Err(a)) | ||
LL | | ) | | ||
| |_____________^ pattern doesn't bind `c` | ||
LL | / V2( | ||
LL | | A( | ||
LL | | A(_, a) | | ||
LL | | B(b), | ||
... | | ||
LL | | | ||
LL | | ) | | ||
| |_____________^ pattern doesn't bind `c` | ||
LL | V3(c), | ||
| - variable not in all patterns | ||
|
||
error[E0408]: variable `a` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:76:13 | ||
| | ||
|
@@ -215,28 +237,6 @@ LL | B(b), | |
LL | V3(c), | ||
| ^^^^^ pattern doesn't bind `b` | ||
|
||
error[E0408]: variable `c` is not bound in all patterns | ||
--> $DIR/missing-bindings.rs:57:13 | ||
| | ||
LL | / V1( | ||
LL | | | ||
LL | | | ||
LL | | A( | ||
... | | ||
LL | | B(Ok(a) | Err(a)) | ||
LL | | ) | | ||
| |_____________^ pattern doesn't bind `c` | ||
LL | / V2( | ||
LL | | A( | ||
LL | | A(_, a) | | ||
LL | | B(b), | ||
... | | ||
LL | | | ||
LL | | ) | | ||
| |_____________^ pattern doesn't bind `c` | ||
LL | V3(c), | ||
| - variable not in all patterns | ||
|
||
error: aborting due to 26 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0408`. |
Uh oh!
There was an error while loading. Please reload this page.