From 289a85cd7100fe8575973ec3889335c061cf9710 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 13 May 2014 16:41:02 +0000 Subject: [PATCH] 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 --- include/llvm/IR/GlobalValue.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.34.1