Skip to content

Commit

Permalink
[llvm-project] Backport fix for compilation issue with gcc-15
Browse files Browse the repository at this point in the history
Update the LLVM tag with the following commits:
2468812ca0d9 UPSTREAM: Add missing include to X86MCTargetDesc.h (#123320)
ed4f96704966 UPSTREAM: [ADT] Add `<cstdint>` to SmallVector (#101761)
  • Loading branch information
devajithvs committed Jan 27, 2025
1 parent 5c52034 commit 60da0f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion interpreter/llvm-project/llvm-project.tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ROOT-llvm18-20250121-01
ROOT-llvm18-20250124-01
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <algorithm>
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <cstdlib>
#include <cstring>
#include <functional>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#ifndef LLVM_LIB_TARGET_X86_MCTARGETDESC_X86MCTARGETDESC_H
#define LLVM_LIB_TARGET_X86_MCTARGETDESC_X86MCTARGETDESC_H

#include <cstdint>
#include <memory>
#include <string>

Expand Down

0 comments on commit 60da0f7

Please sign in to comment.