[compiler-rt] Fix FORTIFY_SOURCE -> _FORTIFY_SOURCE reference (NFC)

As pointed out by maskray.

Fixes: 8ab762557fb057af1a3015211ee116a975027e78
This commit is contained in:
Sam James 2023-02-04 18:04:54 +00:00
parent 8ab762557f
commit ca50897a76
No known key found for this signature in database
GPG Key ID: 738409F520DF9190

View File

@ -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"