From fe6b36788e0e01f606c603d1d186251fc2842070 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Wed, 22 Apr 2015 02:59:03 +0000 Subject: [PATCH] Fix stale comment that mentioned 0 instead of nullptr. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235468 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/TableGen/Record.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/TableGen/Record.cpp b/lib/TableGen/Record.cpp index 17f78e286a9..b81254b99cc 100644 --- a/lib/TableGen/Record.cpp +++ b/lib/TableGen/Record.cpp @@ -385,7 +385,7 @@ bool RecordRecTy::baseClassOf(const RecTy *RHS) const{ } /// resolveTypes - Find a common type that T1 and T2 convert to. -/// Return 0 if no such type exists. +/// Return nullptr if no such type exists. /// RecTy *llvm::resolveTypes(RecTy *T1, RecTy *T2) { if (T1->typeIsConvertibleTo(T2)) -- 2.11.0