ruby-changes:59547
From: Nobuyoshi <ko1@a...>
Date: Sun, 29 Dec 2019 08:21:53 +0900 (JST)
Subject: [ruby-changes:59547] 8ce5d46e66 (master): Fixed an unavailable sanitizer feature
https://git.ruby-lang.org/ruby.git/commit/?id=8ce5d46e66 From 8ce5d46e662f53a56cf21c47981bb99bcb5b73e6 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sun, 29 Dec 2019 08:19:43 +0900 Subject: Fixed an unavailable sanitizer feature diff --git a/internal/sanitizers.h b/internal/sanitizers.h index 680b553..e64a04b 100644 --- a/internal/sanitizers.h +++ b/internal/sanitizers.h @@ -35,7 +35,7 @@ https://github.com/ruby/ruby/blob/trunk/internal/sanitizers.h#L35 __attribute__((__no_sanitize__("memory, address"), __noinline__)) x #elif __has_feature(address_sanitizer) # define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) \ - __attribute__((__no_sanitize__("memory, address"), __noinline__)) x + __attribute__((__no_sanitize__("address"), __noinline__)) x #elif defined(NO_SANITIZE_ADDRESS) # define ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(x) \ NO_SANITIZE_ADDRESS(NOINLINE(x)) -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/