[llvm-commits] [llvm] r86416 - /llvm/trunk/include/llvm/CodeGen/SlotIndexes.h

Daniel Dunbar daniel at zuster.org
Sat Nov 7 15:21:31 PST 2009


Author: ddunbar
Date: Sat Nov  7 17:21:30 2009
New Revision: 86416

URL: http://llvm.org/viewvc/llvm-project?rev=86416&view=rev
Log:
Fix class -> struct tag.

Modified:
    llvm/trunk/include/llvm/CodeGen/SlotIndexes.h

Modified: llvm/trunk/include/llvm/CodeGen/SlotIndexes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SlotIndexes.h?rev=86416&r1=86415&r2=86416&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SlotIndexes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SlotIndexes.h Sat Nov  7 17:21:30 2009
@@ -157,7 +157,7 @@
   /// 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;





More information about the llvm-commits mailing list