Make this work with counter > 127
authorChris Lattner <sabre@nondot.org>
Wed, 4 Jun 2003 20:08:47 +0000 (20:08 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 4 Jun 2003 20:08:47 +0000 (20:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6613 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/EmitFunctions.cpp

index ed3b63e81fc8373df17e05643e0ac9017b2a9cef..7b9810748fbc91733ab5c6e65778a6cdfa3495c7 100644 (file)
@@ -37,7 +37,7 @@ bool EmitFunctionTable::run(Module &M){
                                           cstruct, "llvmFunctionTable");
   M.getGlobalList().push_back(gb);
 
-  ConstantInt *cnst = ConstantInt::get(Type::IntTy, counter); 
+  ConstantInt *cnst = ConstantSInt::get(Type::IntTy, counter); 
   GlobalVariable *fnCount = new GlobalVariable(Type::IntTy, true, 
                                               GlobalValue::ExternalLinkage, 
                                               cnst, "llvmFunctionCount");