summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCRegisterInfo.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-06-24 23:44:48 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-06-24 23:44:48 +0000
commit5e6b4605bd620a864055276a6d454e5a18f9fee8 (patch)
tree1ca1cefb96e633c15ea0751a072263a9721f0b43 /include/llvm/MC/MCRegisterInfo.h
parentba8297ec08cdf7ae0c1e0c18ce07922e1f822643 (diff)
downloadllvm-5e6b4605bd620a864055276a6d454e5a18f9fee8.tar.gz
llvm-5e6b4605bd620a864055276a6d454e5a18f9fee8.tar.bz2
llvm-5e6b4605bd620a864055276a6d454e5a18f9fee8.tar.xz
Rename TargetRegisterDesc to MCRegisterDesc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133845 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCRegisterInfo.h')
-rw-r--r--include/llvm/MC/MCRegisterInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/MC/MCRegisterInfo.h b/include/llvm/MC/MCRegisterInfo.h
index c2ec08e7b2..7b16e7b1d4 100644
--- a/include/llvm/MC/MCRegisterInfo.h
+++ b/include/llvm/MC/MCRegisterInfo.h
@@ -20,7 +20,7 @@
namespace llvm {
-/// TargetRegisterDesc - This record contains all of the information known about
+/// MCRegisterDesc - This record contains all of the information known about
/// a particular register. The Overlaps field contains a pointer to a zero
/// terminated array of registers that this register aliases, starting with
/// itself. This is needed for architectures like X86 which have AL alias AX
@@ -38,7 +38,7 @@ struct MCRegisterDesc {
};
/// MCRegisterInfo base class - We assume that the target defines a static
-/// array of TargetRegisterDesc objects that represent all of the machine
+/// array of MCRegisterDesc objects that represent all of the machine
/// registers that the target has. As such, we simply have to track a pointer
/// to this array so that we can turn register number into a register
/// descriptor.