From: Rafael Espindola Date: Tue, 13 May 2014 16:41:02 +0000 (+0000) Subject: Style fix: The name of variables starts with an upper case letter. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=289a85cd7100fe8575973ec3889335c061cf9710;p=oota-llvm.git Style fix: The name of variables starts with an upper case letter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208710 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/IR/GlobalValue.h b/include/llvm/IR/GlobalValue.h index 60685cac27d..4d0d5e181f8 100644 --- a/include/llvm/IR/GlobalValue.h +++ b/include/llvm/IR/GlobalValue.h @@ -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);