Fix a slew of indentation and parameter naming style issues. This 80% of
authorChandler Carruth <chandlerc@gmail.com>
Mon, 7 Jan 2013 09:57:00 +0000 (09:57 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Mon, 7 Jan 2013 09:57:00 +0000 (09:57 +0000)
commitcf8814f9753b0757ac74d736587b551da82cf9b0
tree83ea6758451204897c1e15b7bf64fa72e973e1f7
parentd12aae6c0535bd2713207ef84b7098f905a89b78
Fix a slew of indentation and parameter naming style issues. This 80% of
this patch brought to you by the tool clang-format.

I wanted to fix up the names of constructor parameters because they
followed a bit of an anti-pattern by naming initialisms with CamelCase:
'Tti', 'Se', etc. This appears to have been in an attempt to not overlap
with the names of member variables 'TTI', 'SE', etc. However,
constructor arguments can very safely alias members, and in fact that's
the conventional way to pass in members. I've fixed all of these I saw,
along with making some strang abbreviations such as 'Lp' be simpler 'L',
or 'Lgl' be the word 'Legal'.

However, the code I was touching had indentation and formatting somewhat
all over the map. So I ran clang-format and fixed them.

I also fixed a few other formatting or doxygen formatting issues such as
using ///< on trailing comments so they are associated with the correct
entry.

There is still a lot of room for improvement of the formating and
cleanliness of this code. ;] At least a few parts of the coding
standards or common practices in LLVM's code aren't followed, the enum
naming rules jumped out at me. I may mix some of these while I'm here,
but not all of them.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171719 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/Vectorize/LoopVectorize.h