From 8f595ceb82da4416e26ca3a14c5dca928b724a81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Rakic?= Date: Sun, 11 Aug 2024 14:43:10 +0000 Subject: [PATCH] tmp: inconsequential change to trigger an LLVM rebuild --- compiler/rustc_llvm/build.rs | 2 ++ compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | 2 ++ compiler/rustc_llvm/src/lib.rs | 2 ++ 3 files changed, 6 insertions(+) diff --git a/compiler/rustc_llvm/build.rs b/compiler/rustc_llvm/build.rs index b2ff9efb41cba..79bba0c662ce9 100644 --- a/compiler/rustc_llvm/build.rs +++ b/compiler/rustc_llvm/build.rs @@ -4,6 +4,8 @@ use std::fmt::Display; use std::path::{Path, PathBuf}; use std::process::{Command, Stdio}; +// tmp: inconsequential change to trigger an LLVM rebuild + const OPTIONAL_COMPONENTS: &[&str] = &[ "x86", "arm", diff --git a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp index 2ff7335a0fc81..9926224974417 100644 --- a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp +++ b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp @@ -39,6 +39,8 @@ // //===----------------------------------------------------------------------=== +// tmp: inconsequential change to trigger an LLVM rebuild + using namespace llvm; using namespace llvm::sys; using namespace llvm::object; diff --git a/compiler/rustc_llvm/src/lib.rs b/compiler/rustc_llvm/src/lib.rs index 939e5e4dbd4ff..a78e225b3c76f 100644 --- a/compiler/rustc_llvm/src/lib.rs +++ b/compiler/rustc_llvm/src/lib.rs @@ -7,6 +7,8 @@ // NOTE: This crate only exists to allow linking on mingw targets. +// tmp: inconsequential change to trigger an LLVM rebuild + use std::cell::RefCell; use std::slice;