pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
llvm-git: Drop local patches
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Tue Aug 29 00:08:03 2017 +0200
Changeset: 619b8741217c3821eec467193c134028ce1f3f69
Modified Files:
llvm-git/distinfo
Removed Files:
llvm-git/patches/patch-lib_Transforms_Instrumentation_AddressSanitizer.cpp
Log Message:
llvm-git: Drop local patches
All merged upstream.
Sponsored by <The NetBSD Foundation>
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=619b8741217c3821eec467193c134028ce1f3f69
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
llvm-git/distinfo | 1 -
...Transforms_Instrumentation_AddressSanitizer.cpp | 29 ----------------------
2 files changed, 30 deletions(-)
diffs:
diff --git a/llvm-git/distinfo b/llvm-git/distinfo
index d8c2b7ca0a..7931384fd5 100644
--- a/llvm-git/distinfo
+++ b/llvm-git/distinfo
@@ -12,4 +12,3 @@ Size (libcxx-3.6.2.src.tar.xz) = 944020 bytes
SHA1 (llvm-3.6.2.src.tar.xz) = 7a00257eb2bc9431e4c77c3a36b033072c54bc7e
RMD160 (llvm-3.6.2.src.tar.xz) = 521cbc5fe2925ea3c6e90c7a31f752a04045c972
Size (llvm-3.6.2.src.tar.xz) = 12802380 bytes
-SHA1 (patch-lib_Transforms_Instrumentation_AddressSanitizer.cpp) = 59ea4dfec39b00a29f69be761310bae545ab11e1
diff --git a/llvm-git/patches/patch-lib_Transforms_Instrumentation_AddressSanitizer.cpp b/llvm-git/patches/patch-lib_Transforms_Instrumentation_AddressSanitizer.cpp
deleted file mode 100644
index 5639411b81..0000000000
--- a/llvm-git/patches/patch-lib_Transforms_Instrumentation_AddressSanitizer.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD$
-
---- lib/Transforms/Instrumentation/AddressSanitizer.cpp.orig 2017-07-04 15:51:35.232369546 +0000
-+++ lib/Transforms/Instrumentation/AddressSanitizer.cpp
-@@ -80,6 +80,7 @@ static const uint64_t kMIPS64_ShadowOffs
- static const uint64_t kAArch64_ShadowOffset64 = 1ULL << 36;
- static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
- static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
-+static const uint64_t kNetBSD_ShadowOffset64 = 1ULL << 46;
- static const uint64_t kPS4CPU_ShadowOffset64 = 1ULL << 40;
- static const uint64_t kWindowsShadowOffset32 = 3ULL << 28;
- // The shadow memory space is dynamically allocated.
-@@ -394,6 +395,7 @@ static ShadowMapping getShadowMapping(Tr
- bool IsAndroid = TargetTriple.isAndroid();
- bool IsIOS = TargetTriple.isiOS() || TargetTriple.isWatchOS();
- bool IsFreeBSD = TargetTriple.isOSFreeBSD();
-+ bool IsNetBSD = TargetTriple.isOSNetBSD();
- bool IsPS4CPU = TargetTriple.isPS4CPU();
- bool IsLinux = TargetTriple.isOSLinux();
- bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
-@@ -438,6 +440,8 @@ static ShadowMapping getShadowMapping(Tr
- Mapping.Offset = kSystemZ_ShadowOffset64;
- else if (IsFreeBSD)
- Mapping.Offset = kFreeBSD_ShadowOffset64;
-+ else if (IsNetBSD)
-+ Mapping.Offset = kNetBSD_ShadowOffset64;
- else if (IsPS4CPU)
- Mapping.Offset = kPS4CPU_ShadowOffset64;
- else if (IsLinux && IsX86_64) {
Home |
Main Index |
Thread Index |
Old Index