[llvm] r308068 - Add missing space to comment
Adrian Prantl via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 14 16:23:58 PDT 2017
Author: adrian
Date: Fri Jul 14 16:23:58 2017
New Revision: 308068
URL: http://llvm.org/viewvc/llvm-project?rev=308068&view=rev
Log:
Add missing space to comment
Modified:
llvm/trunk/include/llvm/IR/DebugInfoMetadata.h
Modified: llvm/trunk/include/llvm/IR/DebugInfoMetadata.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/DebugInfoMetadata.h?rev=308068&r1=308067&r2=308068&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/DebugInfoMetadata.h (original)
+++ llvm/trunk/include/llvm/IR/DebugInfoMetadata.h Fri Jul 14 16:23:58 2017
@@ -435,10 +435,10 @@ public:
/// Return the raw underlying file.
///
- /// A \a DIFile is a \a DIScope, but it doesn't point at a separate file
- /// (it\em is the file). If \c this is an \a DIFile, we need to return \c
- /// this. Otherwise, return the first operand, which is where all other
- /// subclasses store their file pointer.
+ /// A \a DIFile is a \a DIScope, but it doesn't point at a separate file (it
+ /// \em is the file). If \c this is an \a DIFile, we need to return \c this.
+ /// Otherwise, return the first operand, which is where all other subclasses
+ /// store their file pointer.
Metadata *getRawFile() const {
return isa<DIFile>(this) ? const_cast<DIScope *>(this)
: static_cast<Metadata *>(getOperand(0));
More information about the llvm-commits
mailing list