aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Target/TargetRegisterInfo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Target/TargetRegisterInfo.h b/include/llvm/Target/TargetRegisterInfo.h
index 687bd238aa..b8fa8a07dc 100644
--- a/include/llvm/Target/TargetRegisterInfo.h
+++ b/include/llvm/Target/TargetRegisterInfo.h
@@ -759,11 +759,11 @@ const TargetRegisterClass *getCommonSubClass(const TargetRegisterClass *A,
/// Prints virtual and physical registers with or without a TRI instance.
///
/// The format is:
-/// %noreg - NoRegister
-/// %reg5 - a virtual register.
-/// %reg5:sub_8bit - a virtual register with sub-register index (with TRI).
-/// %EAX - a physical register
-/// %physreg17 - a physical register when no TRI instance given.
+/// %noreg - NoRegister
+/// %vreg5 - a virtual register.
+/// %vreg5:sub_8bit - a virtual register with sub-register index (with TRI).
+/// %EAX - a physical register
+/// %physreg17 - a physical register when no TRI instance given.
///
/// Usage: OS << PrintReg(Reg, TRI) << '\n';
///