summaryrefslogtreecommitdiff
path: root/include/llvm/Target/TargetCacheInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-29 02:50:35 +0000
committerChris Lattner <sabre@nondot.org>2002-12-29 02:50:35 +0000
commitf27eeea54fb0176986f76731c499176345047dff (patch)
tree29c2196e780b52405bf44b094d64d8f98f0b3594 /include/llvm/Target/TargetCacheInfo.h
parentdde126207e2ee2ccd040684b010a694c679fa302 (diff)
downloadllvm-f27eeea54fb0176986f76731c499176345047dff.tar.gz
llvm-f27eeea54fb0176986f76731c499176345047dff.tar.bz2
llvm-f27eeea54fb0176986f76731c499176345047dff.tar.xz
Rename MachineOptInfo to TargetoptInfo
Rename MachineCacheInfo to TargetCacheInfo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetCacheInfo.h')
-rw-r--r--include/llvm/Target/TargetCacheInfo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Target/TargetCacheInfo.h b/include/llvm/Target/TargetCacheInfo.h
index 3969e8e427..d83aac78b9 100644
--- a/include/llvm/Target/TargetCacheInfo.h
+++ b/include/llvm/Target/TargetCacheInfo.h
@@ -1,16 +1,16 @@
-//===-- llvm/Target/MachineCacheInfo.h --------------------------*- C++ -*-===//
+//===-- llvm/Target/TargetCacheInfo.h ---------------------------*- C++ -*-===//
//
// Describes properties of the target cache architecture.
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_TARGET_MACHINECACHEINFO_H
-#define LLVM_TARGET_MACHINECACHEINFO_H
+#ifndef LLVM_TARGET_TARGETCACHEINFO_H
+#define LLVM_TARGET_TARGETCACHEINFO_H
#include "Support/DataTypes.h"
class TargetMachine;
-struct MachineCacheInfo : public NonCopyableV {
+struct TargetCacheInfo : public NonCopyableV {
const TargetMachine &target;
protected:
unsigned int numLevels;
@@ -19,7 +19,7 @@ protected:
std::vector<unsigned short> cacheAssoc;
public:
- MachineCacheInfo(const TargetMachine& tgt) : target(tgt) {
+ TargetCacheInfo(const TargetMachine& tgt) : target(tgt) {
Initialize();
}