]> granicus.if.org Git - clang/commitdiff
add annotation
authorChris Lattner <sabre@nondot.org>
Thu, 11 Dec 2008 23:11:52 +0000 (23:11 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 11 Dec 2008 23:11:52 +0000 (23:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60907 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/bitfield.c

index 9b0d6a1fbdfb255b51f6b242d1db821cb4bcd6d7..8d060c5238f51d2bff1d5fedf9e45f0828955490 100644 (file)
@@ -2,7 +2,10 @@
 
 struct a {
   int a : -1; // expected-error{{bit-field 'a' has negative width}}
+
+  // rdar://6081627
   int b : 33; // expected-error{{size of bit-field 'b' exceeds size of its type (32 bits)}}
+
   int c : (1 + 0.25); // expected-error{{expression is not an integer constant expression}}
   int d : (int)(1 + 0.25); 
 };