Add missing slash to make the doxygen output less confusing.
authorBenjamin Kramer <benny.kra@googlemail.com>
Tue, 25 Mar 2014 17:20:28 +0000 (17:20 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Tue, 25 Mar 2014 17:20:28 +0000 (17:20 +0000)
PR19187.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204731 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/DataLayout.h

index 8ad9bd0f4ad33bf2ec54efee4713d9fe65c165a7..59dca636bd1d2dcd2b0cb4bd051f7ffb60bba147 100644 (file)
@@ -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)