[C++] Use 'nullptr'.
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / Interpreter.cpp
index 6d4f6f716fc4d06a374e1e8c362f34d54a9a9446..c589457b670dc495d7c822798f3f623b30d4bd3e 100644 (file)
@@ -38,7 +38,7 @@ ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) {
     if (ErrStr)
       *ErrStr = EC.message();
     // We got an error, just return 0
-    return 0;
+    return nullptr;
   }
 
   return new Interpreter(M);