diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-01-13 22:51:59 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-01-13 22:51:59 +0000 |
| commit | ba651344a83544bd318df44513de38fff54ce67f (patch) | |
| tree | 8d018a4a0960e1d689ab66d3cf0e9941867eebc5 | |
| parent | 7b9d2b6c87ba4f02f8c144e0be594da9947c2f7d (diff) | |
| download | bcm5719-llvm-ba651344a83544bd318df44513de38fff54ce67f.tar.gz bcm5719-llvm-ba651344a83544bd318df44513de38fff54ce67f.zip | |
Update make_cxx_dr_status after the 3.8 branch.
llvm-svn: 257695
| -rwxr-xr-x | clang/www/make_cxx_dr_status | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/www/make_cxx_dr_status b/clang/www/make_cxx_dr_status index bb3007f432a..fe484284c18 100755 --- a/clang/www/make_cxx_dr_status +++ b/clang/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': |

