diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-08-11 22:23:19 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-08-11 22:23:19 +0000 |
commit | bceefe85c6ce2233301ef982c94e20b632cf5bb4 (patch) | |
tree | 5897c9bf4e35ba21947f9ccf61f983e0f22e7f9f /llvm/lib/CodeGen/PseudoSourceValue.cpp | |
parent | 4ae214d5d7eb20e5bafadc1bafc9dcdae64d5f24 (diff) | |
download | llvm-bceefe85c6ce2233301ef982c94e20b632cf5bb4.zip llvm-bceefe85c6ce2233301ef982c94e20b632cf5bb4.tar.gz llvm-bceefe85c6ce2233301ef982c94e20b632cf5bb4.tar.bz2 |
PseudoSourceValue: Update comments and fix lowercase variable names. NFC.
This commit updates the documentation comments in PseudoSourceValue.cpp and
PseudoSourceValue.h based on the LLVM's documentation style. It also fixes
several instances of variable names that started with a lowercase letter.
This change is done in preparation for the changes to the pseudo source value
object management and to the PseudoSourceValue's class hierarchy.
llvm-svn: 244686
Diffstat (limited to 'llvm/lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PseudoSourceValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp index 5c9bec9..f012776 100644 --- a/llvm/lib/CodeGen/PseudoSourceValue.cpp +++ b/llvm/lib/CodeGen/PseudoSourceValue.cpp @@ -60,7 +60,7 @@ const PseudoSourceValue *PseudoSourceValue::getConstantPool() { static const char *const PSVNames[] = {"Stack", "GOT", "JumpTable", "ConstantPool"}; -PseudoSourceValue::PseudoSourceValue(bool isFixed) : isFixed(isFixed) {} +PseudoSourceValue::PseudoSourceValue(bool IsFixed) : IsFixed(IsFixed) {} PseudoSourceValue::~PseudoSourceValue() {} |