<div dir="ltr"><div>It affects for targeting MS.<br><br>Tweaked one test in r247640. You can emulate to add -mms-bitfields.<br><br><div class="gmail_quote"><div dir="ltr">On Tue, Sep 15, 2015 at 6:29 AM Rachel Craik via cfe-commits <<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: rcraik<br>
Date: Mon Sep 14 16:27:36 2015<br>
New Revision: 247618<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=247618&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=247618&view=rev</a><br>
Log:<br>
C11 _Bool bitfield diagnostic<br>
<br>
Summary: Implement DR262 (for C). This patch will mainly affect bitfields of type _Bool<br>
<br>
Reviewers: fraggamuffin, rsmith<br>
<br>
Subscribers: hubert.reinterpretcast, cfe-commits<br>
<br>
Differential Revision: <a href="http://reviews.llvm.org/D10018" rel="noreferrer" target="_blank">http://reviews.llvm.org/D10018</a><br>
<br>
Modified:<br>
    cfe/trunk/include/clang/Basic/DiagnosticGroups.td<br>
    cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td<br>
    cfe/trunk/lib/Sema/SemaDecl.cpp<br>
    cfe/trunk/test/CodeGen/bitfield-2.c<br>
    cfe/trunk/test/CodeGenCXX/warn-padded-packed.cpp<br>
    cfe/trunk/test/Misc/warning-flags.c<br>
    cfe/trunk/test/Sema/bitfield.c<br>
    cfe/trunk/test/SemaCXX/bitfield-layout.cpp<br>
    cfe/trunk/test/SemaCXX/constant-expression-cxx11.cpp<br>
    cfe/trunk/test/SemaCXX/constant-expression-cxx1y.cpp<br>
    cfe/trunk/test/SemaCXX/ms_wide_bitfield.cpp<br>
    cfe/trunk/test/SemaObjC/class-bitfield.m<br>
<br>
Modified: cfe/trunk/include/clang/Basic/DiagnosticGroups.td<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticGroups.td?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticGroups.td?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/include/clang/Basic/DiagnosticGroups.td (original)<br>
+++ cfe/trunk/include/clang/Basic/DiagnosticGroups.td Mon Sep 14 16:27:36 2015<br>
@@ -32,6 +32,7 @@ def AutoImport : DiagGroup<"auto-import"<br>
 def GNUBinaryLiteral : DiagGroup<"gnu-binary-literal">;<br>
 def GNUCompoundLiteralInitializer : DiagGroup<"gnu-compound-literal-initializer">;<br>
 def BitFieldConstantConversion : DiagGroup<"bitfield-constant-conversion">;<br>
+def BitFieldWidth : DiagGroup<"bitfield-width">;<br>
 def ConstantConversion :<br>
   DiagGroup<"constant-conversion", [ BitFieldConstantConversion ] >;<br>
 def LiteralConversion : DiagGroup<"literal-conversion">;<br>
<br>
Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)<br>
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Mon Sep 14 16:27:36 2015<br>
@@ -4314,20 +4314,21 @@ def err_bitfield_has_negative_width : Er<br>
 def err_anon_bitfield_has_negative_width : Error<<br>
   "anonymous bit-field has negative width (%0)">;<br>
 def err_bitfield_has_zero_width : Error<"named bit-field %0 has zero width">;<br>
-def err_bitfield_width_exceeds_type_size : Error<<br>
-  "size of bit-field %0 (%1 bits) exceeds size of its type (%2 bits)">;<br>
-def err_anon_bitfield_width_exceeds_type_size : Error<<br>
-  "size of anonymous bit-field (%0 bits) exceeds size of its type (%1 bits)">;<br>
+def err_bitfield_width_exceeds_type_width : Error<<br>
+  "width of bit-field %0 (%1 bits) exceeds width of its type (%2 bit%s2)">;<br>
+def err_anon_bitfield_width_exceeds_type_width : Error<<br>
+  "width of anonymous bit-field (%0 bits) exceeds width of its type "<br>
+  "(%1 bit%s1)">;<br>
 def err_incorrect_number_of_vector_initializers : Error<<br>
   "number of elements must be either one or match the size of the vector">;<br>
<br>
 // Used by C++ which allows bit-fields that are wider than the type.<br>
-def warn_bitfield_width_exceeds_type_size: Warning<<br>
-  "size of bit-field %0 (%1 bits) exceeds the size of its type; value will be "<br>
-  "truncated to %2 bits">;<br>
-def warn_anon_bitfield_width_exceeds_type_size : Warning<<br>
-  "size of anonymous bit-field (%0 bits) exceeds size of its type; value will "<br>
-  "be truncated to %1 bits">;<br>
+def warn_bitfield_width_exceeds_type_width: Warning<<br>
+  "width of bit-field %0 (%1 bits) exceeds the width of its type; value will "<br>
+  "be truncated to %2 bit%s2">, InGroup<BitFieldWidth>;<br>
+def warn_anon_bitfield_width_exceeds_type_width : Warning<<br>
+  "width of anonymous bit-field (%0 bits) exceeds width of its type; value "<br>
+  "will be truncated to %1 bit%s1">, InGroup<BitFieldWidth>;<br>
<br>
 def warn_missing_braces : Warning<<br>
   "suggest braces around initialization of subobject">,<br>
<br>
Modified: cfe/trunk/lib/Sema/SemaDecl.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/lib/Sema/SemaDecl.cpp (original)<br>
+++ cfe/trunk/lib/Sema/SemaDecl.cpp Mon Sep 14 16:27:36 2015<br>
@@ -12625,26 +12625,26 @@ ExprResult Sema::VerifyBitField(SourceLo<br>
   }<br>
<br>
   if (!FieldTy->isDependentType()) {<br>
-    uint64_t TypeSize = Context.getTypeSize(FieldTy);<br>
-    if (Value.getZExtValue() > TypeSize) {<br>
+    uint64_t TypeWidth = Context.getIntWidth(FieldTy);<br>
+    if (Value.ugt(TypeWidth)) {<br>
       if (!getLangOpts().CPlusPlus || IsMsStruct ||<br>
           Context.getTargetInfo().getCXXABI().isMicrosoft()) {<br>
         if (FieldName)<br>
-          return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)<br>
+          return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width)<br>
             << FieldName << (unsigned)Value.getZExtValue()<br>
-            << (unsigned)TypeSize;<br>
+            << (unsigned)TypeWidth;<br>
<br>
-        return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_size)<br>
-          << (unsigned)Value.getZExtValue() << (unsigned)TypeSize;<br>
+        return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width)<br>
+          << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth;<br>
       }<br>
<br>
       if (FieldName)<br>
-        Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_size)<br>
+        Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width)<br>
           << FieldName << (unsigned)Value.getZExtValue()<br>
-          << (unsigned)TypeSize;<br>
+          << (unsigned)TypeWidth;<br>
       else<br>
-        Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_size)<br>
-          << (unsigned)Value.getZExtValue() << (unsigned)TypeSize;<br>
+        Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width)<br>
+          << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth;<br>
     }<br>
   }<br>
<br>
<br>
Modified: cfe/trunk/test/CodeGen/bitfield-2.c<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/bitfield-2.c?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/bitfield-2.c?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/CodeGen/bitfield-2.c (original)<br>
+++ cfe/trunk/test/CodeGen/bitfield-2.c Mon Sep 14 16:27:36 2015<br>
@@ -237,7 +237,7 @@ unsigned long long test_5() {<br>
 /***/<br>
<br>
 struct s6 {<br>
-  _Bool f0 : 2;<br>
+  unsigned f0 : 2;<br>
 };<br>
<br>
 struct s6 g6 = { 0xF };<br>
<br>
Modified: cfe/trunk/test/CodeGenCXX/warn-padded-packed.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/warn-padded-packed.cpp?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/warn-padded-packed.cpp?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/CodeGenCXX/warn-padded-packed.cpp (original)<br>
+++ cfe/trunk/test/CodeGenCXX/warn-padded-packed.cpp Mon Sep 14 16:27:36 2015<br>
@@ -69,7 +69,7 @@ struct S12 {<br>
<br>
 struct S13 { // expected-warning {{padding size of 'S13' with 6 bits to alignment boundary}}<br>
   char c;<br>
-  bool b : 10; // expected-warning {{size of bit-field 'b' (10 bits) exceeds the size of its type}}<br>
+  bool b : 10; // expected-warning {{width of bit-field 'b' (10 bits) exceeds the width of its type}}<br>
 };<br>
<br>
 // The warnings are emitted when the layout of the structs is computed, so we have to use them.<br>
<br>
Modified: cfe/trunk/test/Misc/warning-flags.c<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Misc/warning-flags.c?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Misc/warning-flags.c?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/Misc/warning-flags.c (original)<br>
+++ cfe/trunk/test/Misc/warning-flags.c Mon Sep 14 16:27:36 2015<br>
@@ -18,7 +18,7 @@ This test serves two purposes:<br>
<br>
 The list of warnings below should NEVER grow.  It should gradually shrink to 0.<br>
<br>
-CHECK: Warnings without flags (92):<br>
+CHECK: Warnings without flags (90):<br>
 CHECK-NEXT:   ext_excess_initializers<br>
 CHECK-NEXT:   ext_excess_initializers_in_char_array_initializer<br>
 CHECK-NEXT:   ext_expected_semi_decl_list<br>
@@ -44,10 +44,8 @@ CHECK-NEXT:   pp_pragma_once_in_main_fil<br>
 CHECK-NEXT:   pp_pragma_sysheader_in_main_file<br>
 CHECK-NEXT:   w_asm_qualifier_ignored<br>
 CHECK-NEXT:   warn_accessor_property_type_mismatch<br>
-CHECK-NEXT:   warn_anon_bitfield_width_exceeds_type_size<br>
 CHECK-NEXT:   warn_arcmt_nsalloc_realloc<br>
 CHECK-NEXT:   warn_asm_label_on_auto_decl<br>
-CHECK-NEXT:   warn_bitfield_width_exceeds_type_size<br>
 CHECK-NEXT:   warn_c_kext<br>
 CHECK-NEXT:   warn_call_to_pure_virtual_member_function_from_ctor_dtor<br>
 CHECK-NEXT:   warn_call_wrong_number_of_arguments<br>
<br>
Modified: cfe/trunk/test/Sema/bitfield.c<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/bitfield.c?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/bitfield.c?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/Sema/bitfield.c (original)<br>
+++ cfe/trunk/test/Sema/bitfield.c Mon Sep 14 16:27:36 2015<br>
@@ -6,7 +6,7 @@ struct a {<br>
   int a : -1; // expected-error{{bit-field 'a' has negative width}}<br>
<br>
   // rdar://6081627<br>
-  int b : 33; // expected-error{{size of bit-field 'b' (33 bits) exceeds size of its type (32 bits)}}<br>
+  int b : 33; // expected-error{{width of bit-field 'b' (33 bits) exceeds width of its type (32 bits)}}<br>
<br>
   int c : (1 + 0.25); // expected-error{{expression is not an integer constant expression}}<br>
   int d : (int)(1 + 0.25);<br>
@@ -22,9 +22,12 @@ struct a {<br>
   int g : (_Bool)1;<br>
<br>
   // PR4017<br>
-  char : 10;      // expected-error {{size of anonymous bit-field (10 bits) exceeds size of its type (8 bits)}}<br>
+  char : 10;      // expected-error {{width of anonymous bit-field (10 bits) exceeds width of its type (8 bits)}}<br>
   unsigned : -2;  // expected-error {{anonymous bit-field has negative width (-2)}}<br>
   float : 12;     // expected-error {{anonymous bit-field has non-integral type 'float'}}<br>
+<br>
+  _Bool : 2;   // expected-error {{width of anonymous bit-field (2 bits) exceeds width of its type (1 bit)}}<br>
+  _Bool h : 5; // expected-error {{width of bit-field 'h' (5 bits) exceeds width of its type (1 bit)}}<br>
 };<br>
<br>
 struct b {unsigned x : 2;} x;<br>
<br>
Modified: cfe/trunk/test/SemaCXX/bitfield-layout.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/bitfield-layout.cpp?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/bitfield-layout.cpp?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/SemaCXX/bitfield-layout.cpp (original)<br>
+++ cfe/trunk/test/SemaCXX/bitfield-layout.cpp Mon Sep 14 16:27:36 2015<br>
@@ -5,25 +5,25 @@<br>
<br>
 // Simple tests.<br>
 struct Test1 {<br>
-  char c : 9; // expected-warning {{size of bit-field 'c' (9 bits) exceeds the size of its type; value will be truncated to 8 bits}}<br>
+  char c : 9; // expected-warning {{width of bit-field 'c' (9 bits) exceeds the width of its type; value will be truncated to 8 bits}}<br>
 };<br>
 CHECK_SIZE(Test1, 2);<br>
 CHECK_ALIGN(Test1, 1);<br>
<br>
 struct Test2 {<br>
-  char c : 16; // expected-warning {{size of bit-field 'c' (16 bits) exceeds the size of its type; value will be truncated to 8 bits}}<br>
+  char c : 16; // expected-warning {{width of bit-field 'c' (16 bits) exceeds the width of its type; value will be truncated to 8 bits}}<br>
 };<br>
 CHECK_SIZE(Test2, 2);<br>
 CHECK_ALIGN(Test2, 2);<br>
<br>
 struct Test3 {<br>
-  char c : 32; // expected-warning {{size of bit-field 'c' (32 bits) exceeds the size of its type; value will be truncated to 8 bits}}<br>
+  char c : 32; // expected-warning {{width of bit-field 'c' (32 bits) exceeds the width of its type; value will be truncated to 8 bits}}<br>
 };<br>
 CHECK_SIZE(Test3, 4);<br>
 CHECK_ALIGN(Test3, 4);<br>
<br>
 struct Test4 {<br>
-  char c : 64; // expected-warning {{size of bit-field 'c' (64 bits) exceeds the size of its type; value will be truncated to 8 bits}}<br>
+  char c : 64; // expected-warning {{width of bit-field 'c' (64 bits) exceeds the width of its type; value will be truncated to 8 bits}}<br>
 };<br>
 CHECK_SIZE(Test4, 8);<br>
 CHECK_ALIGN(Test4, 8);<br>
<br>
Modified: cfe/trunk/test/SemaCXX/constant-expression-cxx11.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/constant-expression-cxx11.cpp?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/constant-expression-cxx11.cpp?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/SemaCXX/constant-expression-cxx11.cpp (original)<br>
+++ cfe/trunk/test/SemaCXX/constant-expression-cxx11.cpp Mon Sep 14 16:27:36 2015<br>
@@ -1801,9 +1801,9 @@ namespace Bitfields {<br>
     bool b : 1;<br>
     unsigned u : 5;<br>
     int n : 5;<br>
-    bool b2 : 3;<br>
-    unsigned u2 : 74; // expected-warning {{exceeds the size of its type}}<br>
-    int n2 : 81; // expected-warning {{exceeds the size of its type}}<br>
+    bool b2 : 3; // expected-warning {{exceeds the width of its type}}<br>
+    unsigned u2 : 74; // expected-warning {{exceeds the width of its type}}<br>
+    int n2 : 81; // expected-warning {{exceeds the width of its type}}<br>
   };<br>
<br>
   constexpr A a = { false, 33, 31, false, 0xffffffff, 0x7fffffff }; // expected-warning 2{{truncation}}<br>
<br>
Modified: cfe/trunk/test/SemaCXX/constant-expression-cxx1y.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/constant-expression-cxx1y.cpp?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/constant-expression-cxx1y.cpp?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/SemaCXX/constant-expression-cxx1y.cpp (original)<br>
+++ cfe/trunk/test/SemaCXX/constant-expression-cxx1y.cpp Mon Sep 14 16:27:36 2015<br>
@@ -872,7 +872,7 @@ namespace Lifetime {<br>
<br>
 namespace Bitfields {<br>
   struct A {<br>
-    bool b : 3;<br>
+    bool b : 1;<br>
     int n : 4;<br>
     unsigned u : 5;<br>
   };<br>
<br>
Modified: cfe/trunk/test/SemaCXX/ms_wide_bitfield.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/ms_wide_bitfield.cpp?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/ms_wide_bitfield.cpp?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/SemaCXX/ms_wide_bitfield.cpp (original)<br>
+++ cfe/trunk/test/SemaCXX/ms_wide_bitfield.cpp Mon Sep 14 16:27:36 2015<br>
@@ -1,9 +1,10 @@<br>
 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple i686-pc-win32 -fdump-record-layouts -fsyntax-only -mms-bitfields -verify %s 2>&1<br>
<br>
 struct A {<br>
-  char a : 9; // expected-error{{size of bit-field 'a' (9 bits) exceeds size of its type (8 bits)}}<br>
-  int b : 33; // expected-error{{size of bit-field 'b' (33 bits) exceeds size of its type (32 bits)}}<br>
-  bool c : 9; // expected-error{{size of bit-field 'c' (9 bits) exceeds size of its type (8 bits)}}<br>
+  char a : 9; // expected-error{{width of bit-field 'a' (9 bits) exceeds width of its type (8 bits)}}<br>
+  int b : 33; // expected-error{{width of bit-field 'b' (33 bits) exceeds width of its type (32 bits)}}<br>
+  bool c : 9; // expected-error{{width of bit-field 'c' (9 bits) exceeds width of its type (1 bit)}}<br>
+  bool d : 3; // expected-error{{width of bit-field 'd' (3 bits) exceeds width of its type (1 bit)}}<br>
 };<br>
<br>
 int a[sizeof(A) == 1 ? 1 : -1];<br>
<br>
Modified: cfe/trunk/test/SemaObjC/class-bitfield.m<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/class-bitfield.m?rev=247618&r1=247617&r2=247618&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/class-bitfield.m?rev=247618&r1=247617&r2=247618&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/test/SemaObjC/class-bitfield.m (original)<br>
+++ cfe/trunk/test/SemaObjC/class-bitfield.m Mon Sep 14 16:27:36 2015<br>
@@ -5,7 +5,7 @@<br>
   int a : -1; // expected-error{{bit-field 'a' has negative width}}<br>
<br>
   // rdar://6081627<br>
-  int b : 33; // expected-error{{size of bit-field 'b' (33 bits) exceeds size of its type (32 bits)}}<br>
+  int b : 33; // expected-error{{width of bit-field 'b' (33 bits) exceeds width of its type (32 bits)}}<br>
<br>
   int c : (1 + 0.25); // expected-error{{expression is not an integer constant expression}}<br>
   int d : (int)(1 + 0.25);<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@lists.llvm.org" target="_blank">cfe-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits</a><br>
</blockquote></div></div></div>