mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -59,9 +59,9 @@ public: | |||||||
|   }; |   }; | ||||||
|  |  | ||||||
| protected: | protected: | ||||||
|   GlobalValue(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps, |   GlobalValue(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps, | ||||||
|               LinkageTypes linkage, const Twine &Name) |               LinkageTypes Linkage, const Twine &Name) | ||||||
|       : Constant(ty, vty, Ops, NumOps), Linkage(linkage), |       : Constant(Ty, VTy, Ops, NumOps), Linkage(Linkage), | ||||||
|         Visibility(DefaultVisibility), Alignment(0), UnnamedAddr(0), |         Visibility(DefaultVisibility), Alignment(0), UnnamedAddr(0), | ||||||
|         DllStorageClass(DefaultStorageClass), Parent(nullptr) { |         DllStorageClass(DefaultStorageClass), Parent(nullptr) { | ||||||
|     setName(Name); |     setName(Name); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user