diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-11-19 06:39:18 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-11-19 06:39:18 +0000 |
commit | 9584f0352b6c499f0043493777df851e3c2e2051 (patch) | |
tree | abbec834f5dff64b8b1d9418a572e1e946efec25 /test/.clang-format | |
parent | 1070c0a33692cb38ba23efd11ff3116f2fc33834 (diff) | |
download | external_llvm-9584f0352b6c499f0043493777df851e3c2e2051.zip external_llvm-9584f0352b6c499f0043493777df851e3c2e2051.tar.gz external_llvm-9584f0352b6c499f0043493777df851e3c2e2051.tar.bz2 |
Merging r195100:
------------------------------------------------------------------------
r195100 | djasper | 2013-11-18 20:26:05 -0800 (Mon, 18 Nov 2013) | 6 lines
Add .clang-format without column limit to subdirectory tests/.
A column limit in the test folder can lead to trouble as the RUN, CHECK,
etc. comments can potentially be broken over multiple lines changing
their meaning. Without column limit, clang-format will simply keep the
test author's line breaks.
------------------------------------------------------------------------
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@195114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/.clang-format')
-rw-r--r-- | test/.clang-format | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/.clang-format b/test/.clang-format new file mode 100644 index 0000000..4799b66 --- /dev/null +++ b/test/.clang-format @@ -0,0 +1,2 @@ +BasedOnStyle: LLVM +ColumnLimit: 0 |