mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
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:
parent
76b13ed403
commit
f2cc2ee449
@ -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);
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user