Fix indentation
authorDaniel Marjamaki <daniel.marjamaki@evidente.se>
Fri, 23 Sep 2016 08:27:24 +0000 (08:27 +0000)
committerDaniel Marjamaki <daniel.marjamaki@evidente.se>
Fri, 23 Sep 2016 08:27:24 +0000 (08:27 +0000)
llvm-svn: 282233

clang/test/Sema/constant-conversion.c

index b67c286..224f2ee 100644 (file)
@@ -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}}
 }