summaryrefslogtreecommitdiff
path: root/include/llvm/TableGen
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2013-02-05 16:40:22 +0000
committerEli Bendersky <eliben@google.com>2013-02-05 16:40:22 +0000
commit1b2c94713600531ddeefb23cd10c49cd533aa09b (patch)
tree38f9f6914a77e263f7e6ac54ccacc6f51c8d8d95 /include/llvm/TableGen
parenta693205ce1d5a57ae4d855d5773f5e1c89eff063 (diff)
downloadllvm-1b2c94713600531ddeefb23cd10c49cd533aa09b.tar.gz
llvm-1b2c94713600531ddeefb23cd10c49cd533aa09b.tar.bz2
llvm-1b2c94713600531ddeefb23cd10c49cd533aa09b.tar.xz
Fix comment formatting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/TableGen')
-rw-r--r--include/llvm/TableGen/Record.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/llvm/TableGen/Record.h b/include/llvm/TableGen/Record.h
index 6450185632..3cf4f1f054 100644
--- a/include/llvm/TableGen/Record.h
+++ b/include/llvm/TableGen/Record.h
@@ -175,8 +175,7 @@ public:
};
-// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
-/// BitsRecTy - 'bits&lt;n&gt;' - Represent a fixed number of bits
+/// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
///
class BitsRecTy : public RecTy {
unsigned Size;
@@ -288,10 +287,8 @@ public:
}
};
-// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
-// the specified type.
-/// ListRecTy - 'list&lt;Ty&gt;' - Represent a list of values, all of which must
-/// be of the specified type.
+/// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
+/// the specified type.
///
class ListRecTy : public RecTy {
RecTy *Ty;