diff options
-rw-r--r-- | test/Sema/constant-conversion.c | 2 |
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}} } |