forked from OSchip/llvm-project
Fix a warning when building with clang++.
llvm-svn: 115924
This commit is contained in:
parent
daab660fb1
commit
82d38df40c
|
@ -24,8 +24,9 @@
|
|||
#include <limits>
|
||||
using namespace llvm;
|
||||
|
||||
template<>
|
||||
char llvm::ProfileInfoT<Function,BasicBlock>::ID = 0;
|
||||
namespace llvm {
|
||||
template<> char ProfileInfoT<Function,BasicBlock>::ID = 0;
|
||||
}
|
||||
|
||||
// Register the ProfileInfo interface, providing a nice name to refer to.
|
||||
INITIALIZE_ANALYSIS_GROUP(ProfileInfo, "Profile Information");
|
||||
|
|
Loading…
Reference in New Issue