diff --git a/docs/LangRef.html b/docs/LangRef.html index 01acce8dd88..0699857bb1e 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2894,8 +2894,19 @@ call void asm sideeffect "eieio", ""() call void asm alignstack "eieio", ""() -
If both keywords appear the 'sideeffect' keyword must come - first.
+Inline asms also support using non-standard assembly dialects. The standard + dialect is ATT, which is assumed when the 'nsdialect' keyword is not + present. When the 'nsdialect' keyword is present, the dialect is + assumed to be Intel. Currently, ATT and Intel are the only supported + dialects. An example is:
+ ++call void asm nsdialect "eieio", ""() ++ +
If multiple keywords appear the 'sideeffect' keyword must come + first, the 'alignstack' keyword second and the + 'nsdialect' keyword last.