-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate LLVM at llvm/llvm-project@c660b281b600
Updates LLVM usage to match [c660b281b600](llvm/llvm-project@c660b281b600) PiperOrigin-RevId: 710060595
- Loading branch information
1 parent
ee03d6d
commit 7d4367e
Showing
2 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,22 @@ | ||
Auto generated patch. Do not edit or delete it, even if empty. | ||
diff -ruN --strip-trailing-cr a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel | ||
--- a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel | ||
+++ b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel | ||
@@ -1619,13 +1619,16 @@ | ||
|
||
cc_library( | ||
name = "FrontendAtomic", | ||
+ srcs = glob([ | ||
+ "lib/Frontend/Atomic/*.cpp", | ||
+ ]), | ||
hdrs = glob([ | ||
"include/llvm/Frontend/Atomic/*.h", | ||
]), | ||
copts = llvm_copts, | ||
deps = [ | ||
+ ":Core", | ||
":Support", | ||
- ":ir_headers", | ||
], | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters