]> granicus.if.org Git - clang/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@282233 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/constant-conversion.c

index b67c286f53aff65756d49bf9911480461f5da377..224f2ee4b53ce624236d0ea09a7f50407e44ccb3 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}}
 }