Remove dependence on the return type of ConstantArray::get

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2004-02-15 04:05:58 +00:00
parent aab54da21c
commit 371064481a
3 changed files with 9 additions and 9 deletions

View File

@ -89,7 +89,7 @@ bool EmitFunctionTable::run(Module &M){
cstruct, "llvmFunctionTable");
M.getGlobalList().push_back(gb);
ConstantArray *constArray = ConstantArray::get(ArrayType::get(Type::SByteTy,
Constant *constArray = ConstantArray::get(ArrayType::get(Type::SByteTy,
sBCons.size()),
sBCons);