From c49e4fe9ccff7587a271d5c17ecad130d2dea201 Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Tue, 11 Aug 2015 22:32:00 +0000 Subject: PseudoSourceValue: Introduce a 'PSVKind' enumerator. This commit introduces a new enumerator named 'PSVKind' in the 'PseudoSourceValue' class. This enumerator is now used to distinguish between the various kinds of pseudo source values. This change is done in preparation for the changes to the pseudo source value object management and to the PseudoSourceValue's class hierarchy - the next two PseudoSourceValue commits will get rid of the global variable that manages the pseudo source values and the mips specific MipsCallEntry subclass. Reviewers: Akira Hatanaka llvm-svn: 244687 --- llvm/lib/Target/Mips/MipsMachineFunction.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Target/Mips/MipsMachineFunction.cpp') diff --git a/llvm/lib/Target/Mips/MipsMachineFunction.cpp b/llvm/lib/Target/Mips/MipsMachineFunction.cpp index 0d1ee046f0d..ebc5ac0486c 100644 --- a/llvm/lib/Target/Mips/MipsMachineFunction.cpp +++ b/llvm/lib/Target/Mips/MipsMachineFunction.cpp @@ -25,14 +25,15 @@ FixGlobalBaseReg("mips-fix-global-base-reg", cl::Hidden, cl::init(true), cl::desc("Always use $gp as the global base register.")); // class MipsCallEntry. -MipsCallEntry::MipsCallEntry(StringRef N) { +MipsCallEntry::MipsCallEntry(StringRef N) : PseudoSourceValue(MipsPSV) { #ifndef NDEBUG Name = N; Val = nullptr; #endif } -MipsCallEntry::MipsCallEntry(const GlobalValue *V) { +MipsCallEntry::MipsCallEntry(const GlobalValue *V) + : PseudoSourceValue(MipsPSV) { #ifndef NDEBUG Val = V; #endif -- cgit v1.2.3