Bump open source llvm revision to 015dee1ac8988ed5184ef649c72ea0692f2633b3

PiperOrigin-RevId: 305896984
Change-Id: Id0480203062105c7ad7164a66bc964742023962b
This commit is contained in:
Mihai Maruseac 2020-04-10 10:14:53 -07:00 committed by TensorFlower Gardener
parent c903b46078
commit edd1f23354
2 changed files with 2 additions and 25 deletions

View File

@ -596,8 +596,8 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""):
)
# Check out LLVM and MLIR from llvm-project.
LLVM_COMMIT = "c6e917d2d3ea07960721923230c34abe3b6214cc"
LLVM_SHA256 = "2c9e67fb2638dc9920b26422b2310b2dd0d203ada4fe20d2b300e8d6b453c5f3"
LLVM_COMMIT = "015dee1ac8988ed5184ef649c72ea0692f2633b3"
LLVM_SHA256 = "5ddd2016c669e88d89e149f96a30402f208815b71119d53109b6840cb3b16f42"
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

@ -4038,27 +4038,6 @@ cc_library(
],
)
cc_library(
name = "ve_asm_printer",
srcs = glob([
"lib/Target/VE/InstPrinter/*.c",
"lib/Target/VE/InstPrinter/*.cpp",
"lib/Target/VE/InstPrinter/*.inc",
]),
hdrs = glob([
"include/llvm/Target/VE/InstPrinter/*.h",
"include/llvm/Target/VE/InstPrinter/*.def",
"include/llvm/Target/VE/InstPrinter/*.inc",
"lib/Target/VE/InstPrinter/*.h",
]),
copts = llvm_copts + ["-Iexternal/llvm-project/llvm/lib/Target/VE"],
deps = [
":config",
":mc",
":support",
],
)
cc_library(
name = "ve_code_gen",
srcs = glob([
@ -4083,7 +4062,6 @@ cc_library(
":selection_dag",
":support",
":target",
":ve_asm_printer",
":ve_desc",
":ve_info",
],
@ -4107,7 +4085,6 @@ cc_library(
":config",
":mc",
":support",
":ve_asm_printer",
":ve_info",
],
)