git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153805
91177308-0d34-0410-b5e6-
96231b3b80d8
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);
}
StringSet _mustPreserveSymbols;
StringSet _asmUndefinedRefs;
llvm::MemoryBuffer* _nativeObjectFile;
- std::vector<const char*> _codegenOptions;
+ std::vector<char*> _codegenOptions;
std::string _mCpu;
std::string _nativeObjectPath;
};