diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-12-08 02:46:25 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-12-08 02:46:25 +0000 |
commit | 7a05f00ade88598eed4791a349c62535174725ce (patch) | |
tree | 47d8bed7993ff042bad419de19bc392ebf70d04f /llvm/docs/TableGenFundamentals.html | |
parent | c1c4e9589aca5dabe4a28ee87696ff401e6fa976 (diff) | |
download | bcm5719-llvm-7a05f00ade88598eed4791a349c62535174725ce.tar.gz bcm5719-llvm-7a05f00ade88598eed4791a349c62535174725ce.zip |
Fix newlines.
llvm-svn: 121233
Diffstat (limited to 'llvm/docs/TableGenFundamentals.html')
-rw-r--r-- | llvm/docs/TableGenFundamentals.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/docs/TableGenFundamentals.html b/llvm/docs/TableGenFundamentals.html index e9067b0e1ee..f09e0d06420 100644 --- a/llvm/docs/TableGenFundamentals.html +++ b/llvm/docs/TableGenFundamentals.html @@ -813,7 +813,8 @@ end-user to factor out commonality from the records.</p> apply, and one or more records to bind the values in. Here are some examples:</p> -<pre class="doc_code"> +<div class="doc_code"> +<pre> <b>let</b> isTerminator = 1, isReturn = 1, isBarrier = 1, hasCtrlDep = 1 <b>in</b> <b>def</b> RET : I<0xC3, RawFrm, (outs), (ins), "ret", [(X86retflag 0)]>; @@ -830,6 +831,7 @@ examples:</p> "call\t{*}$dst", []>; } </pre> +</div> <p>File-scope "let" expressions are often useful when a couple of definitions need to be added to several records, and the records do not otherwise need to be |