summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-02-04 18:04:54 +0000
committerTobias Hieta <tobias@hieta.se>2023-02-05 21:15:13 +0100
commit60df88fd9d1733811f2f5b82b797ab6f2324634a (patch)
treee71a7a18bf606f41f09bcb6d670c6ada366f6480
parentccc916a82734d59a6aad625e928835e333bf9b19 (diff)
downloadllvm-60df88fd9d1733811f2f5b82b797ab6f2324634a.tar.gz
[compiler-rt] Fix FORTIFY_SOURCE -> _FORTIFY_SOURCE reference (NFC)
As pointed out by maskray. Fixes: 8ab762557fb057af1a3015211ee116a975027e78 (cherry picked from commit ca50897a763c7dd0ec7c9b3ec003eeca802c5525)
-rw-r--r--compiler-rt/test/lit.common.cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/lit.common.cfg.py b/compiler-rt/test/lit.common.cfg.py
index a4d2495beddb..5a6f04afffed 100644
--- a/compiler-rt/test/lit.common.cfg.py
+++ b/compiler-rt/test/lit.common.cfg.py
@@ -738,5 +738,5 @@ if config.host_os == 'Darwin':
# possibly be present in system and user configuration files, so disable
# default configs for the test runs. In particular, anything hardening
# related is likely to cause issues with sanitizer tests, because it may
-# preempt something we're looking to trap (e.g. FORTIFY_SOURCE vs our ASAN).
+# preempt something we're looking to trap (e.g. _FORTIFY_SOURCE vs our ASAN).
config.environment["CLANG_NO_DEFAULT_CONFIG"] = "1"