Go to file
Daniel Jasper ee7539a387 Prefer similar line breaks.
This adds a penalty for clang-format for each break that occurs in
a set of parentheses (including fake parenthesis that determine
the range of certain operator precendences) that have not yet been
broken. Thereby, clang-format prefers similar line breaks.

This fixes llvm.org/PR15506.

Before:
const int kTrackingOptions =
    NSTrackingMouseMoved | NSTrackingMouseEnteredAndExited |
    NSTrackingActiveAlways;

After:
const int kTrackingOptions = NSTrackingMouseMoved |
                             NSTrackingMouseEnteredAndExited |
                             NSTrackingActiveAlways;

Also removed ParenState::ForFakeParenthesis which has become unused.

llvm-svn: 185822
2013-07-08 14:25:23 +00:00
clang Prefer similar line breaks. 2013-07-08 14:25:23 +00:00
clang-tools-extra cpp11-migrate: Fixes for r185811 2013-07-08 12:49:04 +00:00
compiler-rt [lsan] Fix test. 2013-07-08 14:08:05 +00:00
debuginfo-tests Now that we get non-trivial value parameters locations correct, un-XFAIL these tests. 2013-06-19 22:07:11 +00:00
libclc libclc: Add assembly versions of vstore for global [u]int4/8/16 2013-06-26 18:22:20 +00:00
libcxx Silence -Wint-to-void-pointer-cast warning in test. 2013-07-06 14:41:36 +00:00
libcxxabi Updated CREDITS.TXT 2013-07-02 19:01:59 +00:00
lld Remove redundant #include. 2013-07-08 09:39:22 +00:00
lldb Pass tid through to ptrace operations 2013-07-04 21:47:32 +00:00
llvm [PowerPC] Fix PR16556 (handle undef ppcf128 in LowerFP_TO_INT). 2013-07-08 14:22:45 +00:00
polly scop detection: remove an iteration over all uses 2013-07-05 20:24:47 +00:00