-
Notifications
You must be signed in to change notification settings - Fork 434
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable more binary libraries if the disable flag is true.
PiperOrigin-RevId: 675567404
- Loading branch information
1 parent
888981a
commit 28f1b88
Showing
6 changed files
with
44 additions
and
70 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
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,48 +1,15 @@ | ||
diff --git a/third_party/llvm/generated.patch b/third_party/llvm/generated.patch | ||
index ed6047c..509398d 100644 | ||
--- a/third_party/llvm/generated.patch | ||
+++ b/third_party/llvm/generated.patch | ||
@@ -1,28 +1 @@ | ||
Auto generated patch. Do not edit or delete it, even if empty. | ||
-diff -ruN --strip-trailing-cr a/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-errors.c b/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-errors.c | ||
---- a/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-errors.c | ||
-+++ b/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-errors.c | ||
-@@ -1,4 +1,4 @@ | ||
--// RUN: %clang_cc1 -flax-vector-conversions=none -ffreestanding %s -triple=i386-unknown-unknown -target-feature +avx10.2-512 -emit-llvm -Wall -Werror -verify | ||
-+// RUN: %clang_cc1 -flax-vector-conversions=none -ffreestanding %s -triple=i386-unknown-unknown -target-feature +avx10.2-512 -Wall -Werror -verify | ||
- | ||
- #include <immintrin.h> | ||
- #include <stddef.h> | ||
-diff -ruN --strip-trailing-cr a/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-x64-error.c b/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-x64-error.c | ||
---- a/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-x64-error.c | ||
-+++ b/clang/test/CodeGen/X86/avx10_2_512satcvtds-builtins-x64-error.c | ||
-@@ -1,4 +1,4 @@ | ||
--// RUN: %clang_cc1 -flax-vector-conversions=none -ffreestanding %s -triple=x86_64-unknown-unknown -target-feature +avx10.2-512 -emit-llvm -Wall -Werror -verify | ||
-+// RUN: %clang_cc1 -flax-vector-conversions=none -ffreestanding %s -triple=x86_64-unknown-unknown -target-feature +avx10.2-512 -Wall -Werror -verify | ||
- | ||
- #include <immintrin.h> | ||
- #include <stddef.h> | ||
-diff -ruN --strip-trailing-cr a/clang/test/CodeGen/X86/avx10_2satcvtds-builtins-errors.c b/clang/test/CodeGen/X86/avx10_2satcvtds-builtins-errors.c | ||
---- a/clang/test/CodeGen/X86/avx10_2satcvtds-builtins-errors.c | ||
-+++ b/clang/test/CodeGen/X86/avx10_2satcvtds-builtins-errors.c | ||
-@@ -1,4 +1,4 @@ | ||
--// RUN: %clang_cc1 -flax-vector-conversions=none -ffreestanding %s -triple=i386-unknown-unknown -target-feature +avx10.2-256 -emit-llvm -Wall -Werror -verify | ||
-+// RUN: %clang_cc1 -flax-vector-conversions=none -ffreestanding %s -triple=i386-unknown-unknown -target-feature +avx10.2-256 -Wall -Werror -verify | ||
- | ||
- unsigned long long test_mm_cvttssd(unsigned long long __A) { | ||
- return _mm_cvttssd(__A); // expected-error {{call to undeclared function '_mm_cvttssd'}} | ||
diff --git a/third_party/llvm/workspace.bzl b/third_party/llvm/workspace.bzl | ||
index aaf1f1a..5a83cba 100644 | ||
index 5a83cba..3686a35 100644 | ||
--- a/third_party/llvm/workspace.bzl | ||
+++ b/third_party/llvm/workspace.bzl | ||
@@ -4,8 +4,8 @@ load("//third_party:repo.bzl", "tf_http_archive") | ||
|
||
def repo(name): | ||
"""Imports LLVM.""" | ||
- LLVM_COMMIT = "f0b3287297aeeddcf030e3c1b08d05a69ad465aa" | ||
- LLVM_SHA256 = "3bc65e7a760a389f5ace1146cb2ffde724a272e97e71c8b8509149e827df6c83" | ||
+ LLVM_COMMIT = "b39a100ff4ec16f1f9cafcc48ea7fed920726650" | ||
+ LLVM_SHA256 = "d9deed58ce9f004a2fb1fe810f19eb4235f560c79b0e24d96b67a09719ac5513" | ||
- LLVM_COMMIT = "b39a100ff4ec16f1f9cafcc48ea7fed920726650" | ||
- LLVM_SHA256 = "d9deed58ce9f004a2fb1fe810f19eb4235f560c79b0e24d96b67a09719ac5513" | ||
+ LLVM_COMMIT = "c23d6df60d62f971d957e730f6fe55ea89541f6b" | ||
+ LLVM_SHA256 = "0802cc4a9f52a0c3694d508a903da619dbe205005f59635d8e167fbe4008670c" | ||
|
||
tf_http_archive( | ||
name = name, |
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
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
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
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