These strings aren't 'const char *' but 'char *'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153805 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2012-03-31 10:51:45 +00:00
parent 76b13ed403
commit f2cc2ee449
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ LTOCodeGenerator::~LTOCodeGenerator() {
delete _target;
delete _nativeObjectFile;
for (std::vector<const char*>::iterator I = _codegenOptions.begin(),
for (std::vector<char*>::iterator I = _codegenOptions.begin(),
E = _codegenOptions.end(); I != E; ++I)
free(*I);
}

View File

@ -65,7 +65,7 @@ private:
StringSet _mustPreserveSymbols;
StringSet _asmUndefinedRefs;
llvm::MemoryBuffer* _nativeObjectFile;
std::vector<const char*> _codegenOptions;
std::vector<char*> _codegenOptions;
std::string _mCpu;
std::string _nativeObjectPath;
};