Updates LLVM usage to match
[8d9c13f37d20](https://github.com/llvm/llvm-project/commit/8d9c13f37d20)

PiperOrigin-RevId: 330496008
Change-Id: Ie1482cff62a38591513d932c3f34de10b5ee9766
This commit is contained in:
A. Unique TensorFlower 2020-09-08 06:19:38 -07:00 committed by TensorFlower Gardener
parent 988fe13388
commit 990e900053
3 changed files with 8 additions and 3 deletions

View File

@ -722,8 +722,8 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""):
)
# Check out LLVM and MLIR from llvm-project.
LLVM_COMMIT = "a70f2eb3e39a42a71ba077247f9deafbdf1e8092"
LLVM_SHA256 = "b588f997c6789b3edeec3959465418af5ca5cd5aa3c7e760b035881bcc2fe746"
LLVM_COMMIT = "8d9c13f37d2081c11186718ae8b5aef8b507d152"
LLVM_SHA256 = "83f3c848274cde5f5482f3b7b186c302530a0aef559ecf55f6e27f5c9fc5dea8"
LLVM_URLS = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/llvm/llvm-project/archive/{commit}.tar.gz".format(commit = LLVM_COMMIT),
"https://github.com/llvm/llvm-project/archive/{commit}.tar.gz".format(commit = LLVM_COMMIT),

View File

@ -2111,7 +2111,10 @@ cc_library(
"include/llvm/Extensions/*.inc",
]),
copts = llvm_copts,
deps = [":config"],
deps = [
":Support",
":config",
],
)
cc_library(

View File

@ -126,6 +126,8 @@ cc_library(
"lib/IR/TestFunc.cpp",
"lib/IR/TestInterfaces.cpp",
"lib/IR/TestMatchers.cpp",
"lib/IR/TestPrintDefUse.cpp",
"lib/IR/TestPrintNesting.cpp",
"lib/IR/TestSideEffects.cpp",
"lib/IR/TestSymbolUses.cpp",
"lib/IR/TestTypes.cpp",