summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenTarget.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-05-17 20:37:59 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-05-17 20:37:59 +0000
commit2618d07765e94ca12c68c9db31e7843cc69d7178 (patch)
treed5ea69caa3672e4b16eb23c2bd7cdf061cd9c0ed /utils/TableGen/CodeGenTarget.h
parenteba0bf5affb23bccc429ce0ec241cb00a4d96a0d (diff)
downloadllvm-2618d07765e94ca12c68c9db31e7843cc69d7178.tar.gz
llvm-2618d07765e94ca12c68c9db31e7843cc69d7178.tar.bz2
llvm-2618d07765e94ca12c68c9db31e7843cc69d7178.tar.xz
Remove PointerType from target definition. Use abstract type MVT::iPTR to
represent pointer type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.h')
-rw-r--r--utils/TableGen/CodeGenTarget.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/utils/TableGen/CodeGenTarget.h b/utils/TableGen/CodeGenTarget.h
index 5ed266ff81..f1f13fabd9 100644
--- a/utils/TableGen/CodeGenTarget.h
+++ b/utils/TableGen/CodeGenTarget.h
@@ -43,7 +43,6 @@ std::string getEnumName(MVT::ValueType T);
class CodeGenTarget {
Record *TargetRec;
std::vector<Record*> CalleeSavedRegisters;
- MVT::ValueType PointerType;
mutable std::map<std::string, CodeGenInstruction> Instructions;
mutable std::vector<CodeGenRegister> Registers;
@@ -63,8 +62,6 @@ public:
return CalleeSavedRegisters;
}
- MVT::ValueType getPointerType() const { return PointerType; }
-
/// getInstructionSet - Return the InstructionSet object.
///
Record *getInstructionSet() const;