From bceefe85c6ce2233301ef982c94e20b632cf5bb4 Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Tue, 11 Aug 2015 22:23:19 +0000 Subject: 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 --- llvm/lib/CodeGen/PseudoSourceValue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen') diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp index 5c9bec9aa0e..f0127766f71 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() {} -- cgit v1.2.3