From: Richard Smith Date: Wed, 13 Jan 2016 22:51:59 +0000 (+0000) Subject: Update make_cxx_dr_status after the 3.8 branch. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b325abbd789bacdc5a12788cc16e9d7f41908f8a;p=clang Update make_cxx_dr_status after the 3.8 branch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@257695 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status index bb3007f432..fe484284c1 100755 --- a/www/make_cxx_dr_status +++ b/www/make_cxx_dr_status @@ -102,10 +102,10 @@ def availability(issue): if status == 'unknown': avail = 'Unknown' avail_style = ' class="none"' - elif status == '3.8': + elif status == '3.9': avail = 'SVN' avail_style = ' class="svn"' - elif status in ('3.1', '3.2', '3.3', '3.4', '3.5', '3.6', '3.7'): + elif status.startswith('3.'): avail = 'Clang %s' % status avail_style = ' class="full"' elif status == 'yes':