From dcf5f07de2f8a4f24cbfebd342adbe551c261fae Mon Sep 17 00:00:00 2001 From: Googler Date: Thu, 11 Dec 2025 01:29:17 -0800 Subject: [PATCH] Fix includes PiperOrigin-RevId: 843107331 --- bazel/llvm.bzl | 2 +- examples/types/absl_status/rust_api.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bazel/llvm.bzl b/bazel/llvm.bzl index 5a82cdc76..82180ed7f 100644 --- a/bazel/llvm.bzl +++ b/bazel/llvm.bzl @@ -53,7 +53,7 @@ def _llvm_loader_repository(repository_ctx): executable = False, ) -LLVM_COMMIT_SHA = "c6e23ab80753a01dce270f5f8a133fbec942315d" +LLVM_COMMIT_SHA = "87bf5ee23863bc0b467ee44b2184b2c134a98464" def llvm_loader_repository_dependencies(): # This *declares* the dependency, but it won't actually be *downloaded* unless it's used. diff --git a/examples/types/absl_status/rust_api.rs b/examples/types/absl_status/rust_api.rs index 3bd0448f4..26d32a113 100644 --- a/examples/types/absl_status/rust_api.rs +++ b/examples/types/absl_status/rust_api.rs @@ -3,7 +3,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception /// This function is only callable from Rust (for now). -pub fn returns_status(ok: bool) -> status::Status { +pub fn returns_status(ok: bool) -> status_rs::Status { if ok { status::OkStatus() } else {