summaryrefslogtreecommitdiffstats
path: root/dynamic-layers/clang-layer/recipes-core/ispc/ispc/0001-Enable-LLVM-15.0-support.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dynamic-layers/clang-layer/recipes-core/ispc/ispc/0001-Enable-LLVM-15.0-support.patch')
-rw-r--r--dynamic-layers/clang-layer/recipes-core/ispc/ispc/0001-Enable-LLVM-15.0-support.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/dynamic-layers/clang-layer/recipes-core/ispc/ispc/0001-Enable-LLVM-15.0-support.patch b/dynamic-layers/clang-layer/recipes-core/ispc/ispc/0001-Enable-LLVM-15.0-support.patch
deleted file mode 100644
index fe82ff25..00000000
--- a/dynamic-layers/clang-layer/recipes-core/ispc/ispc/0001-Enable-LLVM-15.0-support.patch
+++ /dev/null
@@ -1,52 +0,0 @@
1From 9b722217a2818bc4335bf2c7d3293d30aa5977b1 Mon Sep 17 00:00:00 2001
2From: Dmitry Babokin <dmitry.y.babokin@intel.com>
3Date: Fri, 4 Feb 2022 16:45:34 -0800
4Subject: [PATCH 01/24] Enable LLVM 15.0 support
5
6Upstream-Status: Backport [https://github.com/ispc/ispc/commit/9b722217a2818bc4335bf2c7d3293d30aa5977b1]
7
8Signed-off-by: Dmitry Babokin <dmitry.y.babokin@intel.com>
9---
10 src/ispc.h | 4 ++--
11 src/ispc_version.h | 3 ++-
12 2 files changed, 4 insertions(+), 3 deletions(-)
13
14diff --git a/src/ispc.h b/src/ispc.h
15index 362c2b93..581d5de6 100644
16--- a/src/ispc.h
17+++ b/src/ispc.h
18@@ -1,5 +1,5 @@
19 /*
20- Copyright (c) 2010-2021, Intel Corporation
21+ Copyright (c) 2010-2022, Intel Corporation
22 All rights reserved.
23
24 Redistribution and use in source and binary forms, with or without
25@@ -42,7 +42,7 @@
26 #include "target_registry.h"
27
28 #if ISPC_LLVM_VERSION < OLDEST_SUPPORTED_LLVM || ISPC_LLVM_VERSION > LATEST_SUPPORTED_LLVM
29-#error "Only LLVM 11.0 - 13.0 and 14.0 development branch are supported"
30+#error "Only LLVM 11.0 - 14.0 and 15.0 development branch are supported"
31 #endif
32
33 #if defined(_WIN32) || defined(_WIN64)
34diff --git a/src/ispc_version.h b/src/ispc_version.h
35index e8487e5b..04a3cf64 100644
36--- a/src/ispc_version.h
37+++ b/src/ispc_version.h
38@@ -50,9 +50,10 @@
39 #define ISPC_LLVM_12_0 120000
40 #define ISPC_LLVM_13_0 130000
41 #define ISPC_LLVM_14_0 140000
42+#define ISPC_LLVM_15_0 150000
43
44 #define OLDEST_SUPPORTED_LLVM ISPC_LLVM_10_0
45-#define LATEST_SUPPORTED_LLVM ISPC_LLVM_14_0
46+#define LATEST_SUPPORTED_LLVM ISPC_LLVM_15_0
47
48 #ifdef __ispc__xstr
49 #undef __ispc__xstr
50--
512.17.1
52