Skip to content

Commit 3bf5104

Browse files
committed
Update compiler_builtins
The git patch is no longer necessary. Signed-off-by: Ayush <ayushsingh1325@gmail.com>
1 parent d84c8e3 commit 3bf5104

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ object.debug = 0
103103
# See comments in `src/tools/rustc-workspace-hack/README.md` for what's going on
104104
# here
105105
rustc-workspace-hack = { path = 'src/tools/rustc-workspace-hack' }
106-
compiler_builtins = { git = "https://github.com/Ayush1325/compiler-builtins", branch = "uefi-std" }
107106
r-efi = { git = "https://github.com/r-efi/r-efi" }
108107

109108
# See comments in `library/rustc-std-workspace-core/README.md` for what's going on

library/std/src/os/uefi/env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pub(crate) fn locate_handles(mut guid: Guid) -> io::Result<Vec<NonNull<c_void>>>
106106
match inner(&mut guid, boot_services, &mut buf_len, crate::ptr::null_mut()) {
107107
Ok(()) => unreachable!(),
108108
Err(e) => match e.kind() {
109-
io::ErrorKind::InvalidData => {}
109+
io::ErrorKind::FileTooLarge => {}
110110
_ => return Err(e),
111111
},
112112
}

0 commit comments

Comments
 (0)