[libcxx] Remove the availability_markup LIT feature

It is now equivalent to the 'availability' LIT feature, so there's no
reason to keep both.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@348653 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Louis Dionne
2018-12-07 21:48:39 +00:00
parent a796feb20d
commit f01e82fd42
12 changed files with 60 additions and 76 deletions

View File

@@ -407,11 +407,8 @@ class Configuration(object):
if self.use_deployment:
self.add_deployment_feature('with_system_cxx_lib')
# Configure the availability markup checks features.
# Configure the availability feature.
if self.use_deployment:
self.config.available_features.add('availability_markup')
self.add_deployment_feature('availability_markup')
self.config.available_features.add('availability')
self.add_deployment_feature('availability')