[C++] Use 'nullptr'.
[oota-llvm.git] / include / llvm / CodeGen / MachineCodeInfo.h
index ba9dfab91a7e1580c4591cba2cb6652db13635e2..820bc87425b9c9feabbd1004f35867e98e71e6d2 100644 (file)
@@ -27,7 +27,7 @@ private:
   void *Address; // The address of the function in memory
 
 public:
-  MachineCodeInfo() : Size(0), Address(0) {}
+  MachineCodeInfo() : Size(0), Address(nullptr) {}
 
   void setSize(size_t s) {
     Size = s;