mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
[C++] Use 'nullptr'. Tools edition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207176 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -145,7 +145,7 @@ bool BugDriver::initializeExecutionEnvironment() {
|
||||
|
||||
// Create an instance of the AbstractInterpreter interface as specified on
|
||||
// the command line
|
||||
SafeInterpreter = 0;
|
||||
SafeInterpreter = nullptr;
|
||||
std::string Message;
|
||||
|
||||
switch (InterpreterSel) {
|
||||
@@ -256,7 +256,7 @@ bool BugDriver::initializeExecutionEnvironment() {
|
||||
if (!gcc) { outs() << Message << "\nExiting.\n"; exit(1); }
|
||||
|
||||
// If there was an error creating the selected interpreter, quit with error.
|
||||
return Interpreter == 0;
|
||||
return Interpreter == nullptr;
|
||||
}
|
||||
|
||||
/// compileProgram - Try to compile the specified module, returning false and
|
||||
@@ -298,7 +298,7 @@ std::string BugDriver::executeProgram(const Module *Program,
|
||||
const std::string &SharedObj,
|
||||
AbstractInterpreter *AI,
|
||||
std::string *Error) const {
|
||||
if (AI == 0) AI = Interpreter;
|
||||
if (!AI) AI = Interpreter;
|
||||
assert(AI && "Interpreter should have been created already!");
|
||||
bool CreatedBitcode = false;
|
||||
if (BitcodeFile.empty()) {
|
||||
@@ -445,7 +445,7 @@ bool BugDriver::diffProgram(const Module *Program,
|
||||
std::string *ErrMsg) const {
|
||||
// Execute the program, generating an output file...
|
||||
std::string Output(
|
||||
executeProgram(Program, "", BitcodeFile, SharedObject, 0, ErrMsg));
|
||||
executeProgram(Program, "", BitcodeFile, SharedObject, nullptr, ErrMsg));
|
||||
if (!ErrMsg->empty())
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user