diff options
author | Daniel Marjamaki <daniel.marjamaki@evidente.se> | 2016-09-23 08:27:24 +0000 |
---|---|---|
committer | Daniel Marjamaki <daniel.marjamaki@evidente.se> | 2016-09-23 08:27:24 +0000 |
commit | 2dba47c970b873ad823de6d80af71d392da4fe4f (patch) | |
tree | 57bbb6805bd065c1f61d33b285d9c7e72ce7fa1e | |
parent | b8f10df3679b36f51e1de7c4351b82d297825089 (diff) | |
download | clang-2dba47c970b873ad823de6d80af71d392da4fe4f.tar.gz |
Fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@282233 91177308-0d34-0410-b5e6-96231b3b80d8
-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 b67c286f53..224f2ee4b5 100644 --- a/test/Sema/constant-conversion.c +++ b/test/Sema/constant-conversion.c @@ -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}} } |