diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-05 19:00:49 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-05 19:00:49 +0000 |
commit | 581600bfc3060ee13afb278cd87e25da5b5f7db2 (patch) | |
tree | 1136bdd2faa7d5f5514193d9ca9c4f1138b62cef /docs | |
parent | 7bebddf55ece46995f310d79195afb4e5b239886 (diff) |
[ms-inline asm] Enumerate the InlineAsm dialects and rename the nsdialect to
inteldialect.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163231 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 0699857bb1..4daab592e9 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2894,19 +2894,18 @@ call void asm sideeffect "eieio", ""() call void asm alignstack "eieio", ""() </pre> -<p>Inline asms also support using non-standard assembly dialects. The standard - dialect is ATT, which is assumed when the '<tt>nsdialect</tt>' keyword is not - present. When the '<tt>nsdialect</tt>' keyword is present, the dialect is - assumed to be Intel. Currently, ATT and Intel are the only supported - dialects. An example is:</p> +<p>Inline asms also support using non-standard assembly dialects. The assumed + dialect is ATT. When the '<tt>inteldialect</tt>' keyword is present, the + inline asm is using the Intel dialect. Currently, ATT and Intel are the + only supported dialects. An example is:</p> <pre class="doc_code"> -call void asm nsdialect "eieio", ""() +call void asm inteldialect "eieio", ""() </pre> <p>If multiple keywords appear the '<tt>sideeffect</tt>' keyword must come first, the '<tt>alignstack</tt>' keyword second and the - '<tt>nsdialect</tt>' keyword last.</p> + '<tt>inteldialect</tt>' keyword last.</p> <!-- <p>TODO: The format of the asm and constraints string still need to be |