diff options
author | Louis Dionne <ldionne@apple.com> | 2018-11-21 00:03:17 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2018-11-21 00:03:17 +0000 |
commit | 52118fcb46d83812591f38bbdba280f23b58d3fc (patch) | |
tree | 2422438d3f998549260d930e670e1ed2e3278c59 /libcxx/utils | |
parent | 194c64ef4f22126012394f846a029d87ebcd7456 (diff) | |
download | bcm5719-llvm-52118fcb46d83812591f38bbdba280f23b58d3fc.tar.gz bcm5719-llvm-52118fcb46d83812591f38bbdba280f23b58d3fc.zip |
[NFC] Rename lit feature to '-fsized-deallocation' for consistency
The '-faligned-allocation' flag uses a feature with the same name (with a
leading dash).
llvm-svn: 347367
Diffstat (limited to 'libcxx/utils')
-rw-r--r-- | libcxx/utils/libcxx/test/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index 62a13938bc0..7467511cd24 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -446,7 +446,7 @@ class Configuration(object): # Run a compile test for the -fsized-deallocation flag. This is needed # in test/std/language.support/support.dynamic/new.delete if self.cxx.hasCompileFlag('-fsized-deallocation'): - self.config.available_features.add('fsized-deallocation') + self.config.available_features.add('-fsized-deallocation') if self.cxx.hasCompileFlag('-faligned-allocation'): self.config.available_features.add('-faligned-allocation') |