From b325abbd789bacdc5a12788cc16e9d7f41908f8a Mon Sep 17 00:00:00 2001
From: Richard Smith <richard-llvm@metafoo.co.uk>
Date: Wed, 13 Jan 2016 22:51:59 +0000
Subject: [PATCH] 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
---
 www/make_cxx_dr_status | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/make_cxx_dr_status b/www/make_cxx_dr_status
index bb3007f432a..fe484284c18 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':
-- 
GitLab