aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-11-09 23:36:43 +0000
committerJohn McCall <rjmccall@apple.com>2010-11-09 23:36:43 +0000
commit5dac4c222d9ff25488ac6f0b9642fa0d939ba2f8 (patch)
tree88d133d68c3e46371801f0fc8ff0d2141e041b51
parentbeb22aaa22e255241d6a81e8b0a9239f5fa584f3 (diff)
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@118649 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Sema/constant-conversion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/constant-conversion.c b/test/Sema/constant-conversion.c
index 2957183165..5f734f3649 100644
--- a/test/Sema/constant-conversion.c
+++ b/test/Sema/constant-conversion.c
@@ -11,5 +11,5 @@ void test_6792488(void) {
void test_7809123(void) {
struct { int i5 : 5; } a;
- a.i5 = 36; // expected-warning {{implicit truncation for 'int' to bitfield changes value from 36 to 4}}
+ a.i5 = 36; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 36 to 4}}
}