[llvm] r208710 - Style fix: The name of variables starts with an upper case letter.

Rafael Espindola rafael.espindola at gmail.com
Tue May 13 09:41:03 PDT 2014


Author: rafael
Date: Tue May 13 11:41:02 2014
New Revision: 208710

URL: http://llvm.org/viewvc/llvm-project?rev=208710&view=rev
Log:
Style fix: The name of variables starts with an upper case letter.

Modified:
    llvm/trunk/include/llvm/IR/GlobalValue.h

Modified: llvm/trunk/include/llvm/IR/GlobalValue.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/GlobalValue.h?rev=208710&r1=208709&r2=208710&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/GlobalValue.h (original)
+++ llvm/trunk/include/llvm/IR/GlobalValue.h Tue May 13 11:41:02 2014
@@ -59,9 +59,9 @@ public:
   };
 
 protected:
-  GlobalValue(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps,
-              LinkageTypes linkage, const Twine &Name)
-      : Constant(ty, vty, Ops, NumOps), Linkage(linkage),
+  GlobalValue(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps,
+              LinkageTypes Linkage, const Twine &Name)
+      : Constant(Ty, VTy, Ops, NumOps), Linkage(Linkage),
         Visibility(DefaultVisibility), Alignment(0), UnnamedAddr(0),
         DllStorageClass(DefaultStorageClass), Parent(nullptr) {
     setName(Name);





More information about the llvm-commits mailing list