diff options
Diffstat (limited to 'lib/Transforms/Instrumentation/CFGMST.h')
| -rw-r--r-- | lib/Transforms/Instrumentation/CFGMST.h | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/lib/Transforms/Instrumentation/CFGMST.h b/lib/Transforms/Instrumentation/CFGMST.h index 3802f9fbf7dbe..16e2e6b4e7304 100644 --- a/lib/Transforms/Instrumentation/CFGMST.h +++ b/lib/Transforms/Instrumentation/CFGMST.h @@ -12,6 +12,9 @@  //  //===----------------------------------------------------------------------===// +#ifndef LLVM_LIB_TRANSFORMS_INSTRUMENTATION_CFGMST_H +#define LLVM_LIB_TRANSFORMS_INSTRUMENTATION_CFGMST_H +  #include "llvm/ADT/DenseMap.h"  #include "llvm/ADT/STLExtras.h"  #include "llvm/Analysis/BlockFrequencyInfo.h" @@ -24,10 +27,10 @@  #include <utility>  #include <vector> -namespace llvm { -  #define DEBUG_TYPE "cfgmst" +namespace llvm { +  /// \brief An union-find based Minimum Spanning Tree for CFG  ///  /// Implements a Union-find algorithm to compute Minimum Spanning Tree @@ -220,5 +223,8 @@ public:    }  }; -#undef DEBUG_TYPE // "cfgmst"  } // end namespace llvm + +#undef DEBUG_TYPE // "cfgmst" + +#endif // LLVM_LIB_TRANSFORMS_INSTRUMENTATION_CFGMST_H | 
