llvm-6502/lib
Chandler Carruth cf8814f975 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
2013-01-07 09:57:00 +00:00
..
Analysis Move the initialization to the Analysis library as well as the pass. 2013-01-07 03:33:08 +00:00
Archive
AsmParser
Bitcode
CodeGen PR14759: Debug info support for C++ member pointers. 2013-01-07 05:51:15 +00:00
DebugInfo Update comment. 2013-01-07 03:27:58 +00:00
ExecutionEngine
IR Rough out a new c'tor for the AttrBuilder class. 2013-01-07 08:24:35 +00:00
Linker
MC
Object
Option
Support Eric thought that Darwin was right to use -1 consistently rather than 2013-01-05 00:42:50 +00:00
TableGen Revert r171140. We don't actually need to support #NAME. Because NAME by itself is interpreted just fine. 2013-01-07 05:09:33 +00:00
Target Remove more unnecessary # operators with nothing to paste proceeding them. 2013-01-07 06:14:20 +00:00
Transforms Fix a slew of indentation and parameter naming style issues. This 80% of 2013-01-07 09:57:00 +00:00
CMakeLists.txt
LLVMBuild.txt
Makefile