diff --git a/docs/LangRef.html b/docs/LangRef.html index 0699857bb1e..4daab592e9d 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2894,19 +2894,18 @@ call void asm sideeffect "eieio", ""() call void asm alignstack "eieio", ""() -

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:

+

Inline asms also support using non-standard assembly dialects. The assumed + dialect is ATT. When the 'inteldialect' keyword is present, the + inline asm is using the Intel dialect. Currently, ATT and Intel are the + only supported dialects. An example is:

-call void asm nsdialect "eieio", ""()
+call void asm inteldialect "eieio", ""()
 

If multiple keywords appear the 'sideeffect' keyword must come first, the 'alignstack' keyword second and the - 'nsdialect' keyword last.

+ 'inteldialect' keyword last.