From 6f8d762e6bad72b2ab9ff710cca3abb0a658fdf0 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Fri, 6 Feb 2009 17:01:33 +0000 Subject: [PATCH] Document the meaning of -1 for getCopyCost. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63933 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetRegisterInfo.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/llvm/Target/TargetRegisterInfo.h b/include/llvm/Target/TargetRegisterInfo.h index 54fc00dd84c..3b452573fc0 100644 --- a/include/llvm/Target/TargetRegisterInfo.h +++ b/include/llvm/Target/TargetRegisterInfo.h @@ -202,7 +202,8 @@ public: unsigned getAlignment() const { return Alignment; } /// getCopyCost - Return the cost of copying a value between two registers in - /// this class. + /// this class. -1 means the register class is very expensive to copy e.g. + /// status flag register classes. int getCopyCost() const { return CopyCost; } };