diff options
author | Daniel Jasper <djasper@google.com> | 2015-05-17 07:27:09 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-05-17 07:27:09 +0000 |
commit | 2fd16632bc25cc1c7246f4f6ce7cd45240c06ead (patch) | |
tree | e03b13af9f6d1c7b85681c5ba3647d1beff5c898 /llvm/lib/CodeGen/MachineScheduler.cpp | |
parent | 270c5257e610337a52fcc34efbd002ae81e45442 (diff) | |
download | llvm-2fd16632bc25cc1c7246f4f6ce7cd45240c06ead.zip llvm-2fd16632bc25cc1c7246f4f6ce7cd45240c06ead.tar.gz llvm-2fd16632bc25cc1c7246f4f6ce7cd45240c06ead.tar.bz2 |
clang-format: Improve line wrapping around << operators.
Generally, clang-format tries to keep label-value pairs on a single
line for stream operators. However, we should not do that if there is
just a single such pair, as that doesn't help much.
Before:
llvm::errs() << "aaaaaaaaaaaa: " << aaaaaaa(aaaaaaaaa,
aaaaaaaaa);
After:
llvm::errs() << "aaaaaaaaaaaa: "
<< aaaaaaa(aaaaaaaaa, aaaaaaaaa);
Also remove old test case that was testing actual behavior any more.
llvm-svn: 237535
Diffstat (limited to 'llvm/lib/CodeGen/MachineScheduler.cpp')
0 files changed, 0 insertions, 0 deletions