diff options
author | Daniel Jasper <djasper@google.com> | 2013-02-27 11:43:50 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-02-27 11:43:50 +0000 |
commit | 9c65b069821b7de79427e291b006293a0f55ff8f (patch) | |
tree | 422f3f0daa889ac3bce71c68120c001d159e1286 /unittests/Format/FormatTest.cpp | |
parent | 8614304c0d728d43ef16691708281273101b00af (diff) |
Fix formatting of multiplications in array subscripts.
Before:
a[a* a] = 1;
After:
a[a * a] = 1;
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176180 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Format/FormatTest.cpp')
-rw-r--r-- | unittests/Format/FormatTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index 87e89dbefd..5be319cba0 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -1813,6 +1813,7 @@ TEST_F(FormatTest, UnderstandsUsesOfStarAndAmp) { verifyIndependentOfContext("a * ++b;"); verifyIndependentOfContext("a * --b;"); verifyIndependentOfContext("a[4] * b;"); + verifyIndependentOfContext("a[a * a] = 1;"); verifyIndependentOfContext("f() * b;"); verifyIndependentOfContext("a * [self dostuff];"); verifyIndependentOfContext("a * (a + b);"); |