r282233 - Fix indentation
Daniel Marjamaki via cfe-commits
cfe-commits at lists.llvm.org
Fri Sep 23 01:27:24 PDT 2016
Author: danielmarjamaki
Date: Fri Sep 23 03:27:24 2016
New Revision: 282233
URL: http://llvm.org/viewvc/llvm-project?rev=282233&view=rev
Log:
Fix indentation
Modified:
cfe/trunk/test/Sema/constant-conversion.c
Modified: cfe/trunk/test/Sema/constant-conversion.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/constant-conversion.c?rev=282233&r1=282232&r2=282233&view=diff
==============================================================================
--- cfe/trunk/test/Sema/constant-conversion.c (original)
+++ cfe/trunk/test/Sema/constant-conversion.c Fri Sep 23 03:27:24 2016
@@ -128,6 +128,6 @@ void test10() {
s.a = ~0U;
s.a = ~(1<<A);
-s.a = -9; // expected-warning{{implicit truncation from 'int' to bitfield changes value from -9 to 7}}
+ s.a = -9; // expected-warning{{implicit truncation from 'int' to bitfield changes value from -9 to 7}}
s.a = 16; // expected-warning{{implicit truncation from 'int' to bitfield changes value from 16 to 0}}
}
More information about the cfe-commits
mailing list