aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2004-08-29 21:59:26 +0000
committerNate Begeman <natebegeman@mac.com>2004-08-29 21:59:26 +0000
commitc3d479a40f5cc1efe6a6ece0cd43533a24971f12 (patch)
tree6911823d3cad5058100a4dfc6cd3ed3b88afdc8e
parentc0854bfcfcafb613a46099b3a46e98a2fda0a917 (diff)
Update doxygen comment now that getSpillSize is supposed to return value in bits
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16101 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Target/MRegisterInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h
index 572af3f1d2..03797c7428 100644
--- a/include/llvm/Target/MRegisterInfo.h
+++ b/include/llvm/Target/MRegisterInfo.h
@@ -198,8 +198,8 @@ public:
return get(RegNo).Name;
}
- /// getSpillSize - Return the size required of a stack slot used to spill
- /// register into.
+ /// getSpillSize - Return the size in bits required of a stack slot used to
+ /// spill register into.
unsigned getSpillSize(unsigned RegNo) const {
return get(RegNo).SpillSize;
}