[llvm] r204731 - Add missing slash to make the doxygen output less confusing.

Benjamin Kramer benny.kra at googlemail.com
Tue Mar 25 10:20:28 PDT 2014


Author: d0k
Date: Tue Mar 25 12:20:28 2014
New Revision: 204731

URL: http://llvm.org/viewvc/llvm-project?rev=204731&view=rev
Log:
Add missing slash to make the doxygen output less confusing.

PR19187.

Modified:
    llvm/trunk/include/llvm/IR/DataLayout.h

Modified: llvm/trunk/include/llvm/IR/DataLayout.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/DataLayout.h?rev=204731&r1=204730&r2=204731&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/DataLayout.h (original)
+++ llvm/trunk/include/llvm/IR/DataLayout.h Tue Mar 25 12:20:28 2014
@@ -281,7 +281,7 @@ public:
   /// fitsInLegalInteger - This function returns true if the specified type fits
   /// in a native integer type supported by the CPU.  For example, if the CPU
   /// only supports i32 as a native integer type, then i27 fits in a legal
-  // integer type but i45 does not.
+  /// integer type but i45 does not.
   bool fitsInLegalInteger(unsigned Width) const {
     for (unsigned LegalIntWidth : LegalIntWidths)
       if (Width <= LegalIntWidth)





More information about the llvm-commits mailing list