diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-07 23:21:30 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-07 23:21:30 +0000 |
commit | cdfb315f1639b4e59ae160c7dd72dbb6a5110d84 (patch) | |
tree | 108ce027e5a96ec4e0a495635e6101e4de5f47ee | |
parent | 3a313df69bd28735564442d13f5a101f614f8dc1 (diff) | |
download | bcm5719-llvm-cdfb315f1639b4e59ae160c7dd72dbb6a5110d84.tar.gz bcm5719-llvm-cdfb315f1639b4e59ae160c7dd72dbb6a5110d84.zip |
Fix class -> struct tag.
llvm-svn: 86416
-rw-r--r-- | llvm/include/llvm/CodeGen/SlotIndexes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/SlotIndexes.h b/llvm/include/llvm/CodeGen/SlotIndexes.h index 6c7a2be2aff..294827dc65e 100644 --- a/llvm/include/llvm/CodeGen/SlotIndexes.h +++ b/llvm/include/llvm/CodeGen/SlotIndexes.h @@ -157,7 +157,7 @@ namespace llvm { /// SlotIndex - An opaque wrapper around machine indexes. class SlotIndex { friend class SlotIndexes; - friend class DenseMapInfo<SlotIndex>; + friend struct DenseMapInfo<SlotIndex>; private: static const unsigned PHI_BIT = 1 << 2; |