diff --git a/docs/LangRef.html b/docs/LangRef.html index 5324c0ef294..d6696884e4a 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1426,7 +1426,7 @@ argument is evaluated. If the value is true, control flows to the 'iftrue' label argument. If "cond" is false, control flows to the 'iffalse' label argument.

Example:
-
Test:
%cond = seteq int %a, %b
br bool %cond, label %IfEqual, label %IfUnequal
IfEqual:
Test:
%cond =
icmp eq, int %a, %b
br bool %cond, label %IfEqual, label %IfUnequal
IfEqual:
ret int 1
IfUnequal:
ret int 0