69 lines
2.3 KiB
Diff
69 lines
2.3 KiB
Diff
From dbc264e817992dd70ae72c77149b274cfc888b99 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Lukas=20B=C3=B6hm?= <suluke93@gmail.com>
|
|
Date: Tue, 9 Jan 2018 17:08:33 +0100
|
|
Subject: [PATCH] Fix issues pointed out by @dbabokin
|
|
|
|
---
|
|
alloy.py | 2 +-
|
|
builtins/target-knl.ll | 4 ++--
|
|
builtins/target-skx.ll | 4 ++--
|
|
3 files changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/alloy.py b/alloy.py
|
|
index 310d95f3..1eb743ee 100755
|
|
--- a/alloy.py
|
|
+++ b/alloy.py
|
|
@@ -138,7 +138,7 @@ def checkout_LLVM(component, use_git, version_LLVM, revision, target_dir, from_v
|
|
SVN_PATH="trunk"
|
|
GIT_BRANCH="master"
|
|
elif version_LLVM == "6_0":
|
|
- SVN_PATH="tags/RELEASE_600/final"
|
|
+ SVN_PATH="branches/release_60"
|
|
GIT_BRANCH="release_60"
|
|
elif version_LLVM == "5_0":
|
|
SVN_PATH="tags/RELEASE_501/final"
|
|
diff --git a/builtins/target-knl.ll b/builtins/target-knl.ll
|
|
index 96d5f782..9b0cef77 100644
|
|
--- a/builtins/target-knl.ll
|
|
+++ b/builtins/target-knl.ll
|
|
@@ -42,7 +42,7 @@ ifelse(LLVM_VERSION, LLVM_3_7,
|
|
LLVM_VERSION, LLVM_5_0,
|
|
`include(`target-avx512-common.ll')',
|
|
LLVM_VERSION, LLVM_6_0,
|
|
- `include(`target-avx512-common.ll')'
|
|
+ `include(`target-avx512-common.ll')',
|
|
LLVM_VERSION, LLVM_7_0,
|
|
`include(`target-avx512-common.ll')'
|
|
)
|
|
@@ -74,7 +74,7 @@ ifelse(LLVM_VERSION, LLVM_3_7,
|
|
LLVM_VERSION, LLVM_5_0,
|
|
rcp_rsqrt_varying_float_knl(),
|
|
LLVM_VERSION, LLVM_6_0,
|
|
- rcp_rsqrt_varying_float_knl()
|
|
+ rcp_rsqrt_varying_float_knl(),
|
|
LLVM_VERSION, LLVM_7_0,
|
|
rcp_rsqrt_varying_float_knl()
|
|
)
|
|
diff --git a/builtins/target-skx.ll b/builtins/target-skx.ll
|
|
index b71a768a..fd9cebb8 100644
|
|
--- a/builtins/target-skx.ll
|
|
+++ b/builtins/target-skx.ll
|
|
@@ -41,7 +41,7 @@ ifelse(LLVM_VERSION, LLVM_3_8,
|
|
LLVM_VERSION, LLVM_5_0,
|
|
`include(`target-avx512-common.ll')',
|
|
LLVM_VERSION, LLVM_6_0,
|
|
- `include(`target-avx512-common.ll')'
|
|
+ `include(`target-avx512-common.ll')',
|
|
LLVM_VERSION, LLVM_7_0,
|
|
`include(`target-avx512-common.ll')'
|
|
)
|
|
@@ -94,7 +94,7 @@ ifelse(LLVM_VERSION, LLVM_3_8,
|
|
LLVM_VERSION, LLVM_5_0,
|
|
rcp_rsqrt_varying_float_skx(),
|
|
LLVM_VERSION, LLVM_6_0,
|
|
- rcp_rsqrt_varying_float_skx()
|
|
+ rcp_rsqrt_varying_float_skx(),
|
|
LLVM_VERSION, LLVM_7_0,
|
|
rcp_rsqrt_varying_float_skx()
|
|
)
|