diff options
author | Owen Anderson <resistor@mac.com> | 2007-11-08 01:22:24 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-11-08 01:22:24 +0000 |
commit | fc8663dbe084741bc7adfa5dde01e663abb37a55 (patch) | |
tree | 6eae0289ba9e8fabf8915f9697c7c0c3eecbc06e | |
parent | a018540807775703d630e9c92f9d8013d545599e (diff) |
Oops, forgot to commit this file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43867 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/LiveVariables.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/LiveVariables.h b/include/llvm/CodeGen/LiveVariables.h index 36536a14ee..8938330fad 100644 --- a/include/llvm/CodeGen/LiveVariables.h +++ b/include/llvm/CodeGen/LiveVariables.h @@ -83,6 +83,10 @@ public: /// BitVector AliveBlocks; + /// UsedBlocks - Set of blocks of which this value is actually used. This + /// is a bit set which uses the basic block number as an index. + BitVector UsedBlocks; + /// NumUses - Number of uses of this register across the entire function. /// unsigned NumUses; |