Changed to external global var

llvm-svn: 4120
This commit is contained in:
Anand Shukla 2002-10-12 20:33:47 +00:00
parent 16b1cb08b1
commit 12b05f3880
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ bool ProfilePaths::runOnFunction(Function &F){
static bool insertedThreshold = false;
if(!insertedThreshold){
threshold = new GlobalVariable(Type::IntTy, false, true, 0,
threshold = new GlobalVariable(Type::IntTy, false, false, 0,
"reopt_threshold");
F.getParent()->getGlobalList().push_back(threshold);