-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Rollup of 4 pull requests #116501
Rollup of 4 pull requests #116501
Commits on Sep 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for acb7c21 - Browse repository at this point
Copy the full SHA acb7c21View commit details
Commits on Oct 3, 2023
-
Detect missing
=>
after match guard during parsing``` error: expected one of `,`, `:`, or `}`, found `.` --> $DIR/missing-fat-arrow.rs:25:14 | LL | Some(a) if a.value == b { | - while parsing this struct LL | a.value = 1; | -^ expected one of `,`, `:`, or `}` | | | while parsing this struct field | help: try naming a field | LL | a: a.value = 1; | ++ help: you might have meant to start a match arm after the match guard | LL | Some(a) if a.value == b => { | ++ ``` Fix rust-lang#78585.
Configuration menu - View commit details
-
Copy full SHA for 745c1ea - Browse repository at this point
Copy the full SHA 745c1eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 18ec4e9 - Browse repository at this point
Copy the full SHA 18ec4e9View commit details
Commits on Oct 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8fd345d - Browse repository at this point
Copy the full SHA 8fd345dView commit details
Commits on Oct 5, 2023
-
Properly export function defined in test which uses global_asm!()
Currently the test passes with the LLVM backend as the codegen unit partitioning logic happens to place both the global_asm!() and the function which calls the function defined by the global_asm!() in the same CGU. With the Cranelift backend it breaks however as it will place all assembly in separate codegen units to be passed to an external linker.
Configuration menu - View commit details
-
Copy full SHA for 9facf0b - Browse repository at this point
Copy the full SHA 9facf0bView commit details
Commits on Oct 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ecf271c - Browse repository at this point
Copy the full SHA ecf271cView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa248cd - Browse repository at this point
Copy the full SHA fa248cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3abef68 - Browse repository at this point
Copy the full SHA 3abef68View commit details -
Rollup merge of rust-lang#116277 - RalfJung:post-mono, r=oli-obk
dont call mir.post_mono_checks in codegen It seems like all tests are still passing when I remove this... let's see what CI says.
Configuration menu - View commit details
-
Copy full SHA for 6d1c3a4 - Browse repository at this point
Copy the full SHA 6d1c3a4View commit details -
Rollup merge of rust-lang#116400 - estebank:issue-78585, r=WaffleLapkin
Detect missing `=>` after match guard during parsing ``` error: expected one of `,`, `:`, or `}`, found `.` --> $DIR/missing-fat-arrow.rs:25:14 | LL | Some(a) if a.value == b { | - while parsing this struct LL | a.value = 1; | -^ expected one of `,`, `:`, or `}` | | | while parsing this struct field | help: try naming a field | LL | a: a.value = 1; | ++ help: you might have meant to start a match arm after the match guard | LL | Some(a) if a.value == b => { | ++ ``` Fix rust-lang#78585.
Configuration menu - View commit details
-
Copy full SHA for 0d68e41 - Browse repository at this point
Copy the full SHA 0d68e41View commit details -
Rollup merge of rust-lang#116458 - bjorn3:fix_global_asm_test, r=work…
…ingjubilee Properly export function defined in test which uses global_asm!() Currently the test passes with the LLVM backend as the codegen unit partitioning logic happens to place both the global_asm!() and the function which calls the function defined by the global_asm!() in the same CGU. With the Cranelift backend it breaks however as it will place all assembly in separate codegen units to be passed to an external linker.
Configuration menu - View commit details
-
Copy full SHA for 5268120 - Browse repository at this point
Copy the full SHA 5268120View commit details -
Rollup merge of rust-lang#116500 - simlay:tvos-support-for-register_d…
…tor, r=workingjubilee Add tvOS to target_os for register_dtor Closes rust-lang#116491.
Configuration menu - View commit details
-
Copy full SHA for 4b102b0 - Browse repository at this point
Copy the full SHA 4b102b0View commit details