From: Chris Lattner Date: Sat, 9 May 2009 18:11:50 +0000 (+0000) Subject: fix typo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=60150a3dc498b78a10cfe9b467f08f1cdec9052d;p=oota-llvm.git fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71362 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 0ff7dd3338c..36eae718e35 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2240,7 +2240,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 = icmp eq, i32 %a, %b
br i1 %cond, label %IfEqual, label %IfUnequal
IfEqual:
Test:
%cond =
icmp eq i32 %a, %b
br i1 %cond, label %IfEqual, label %IfUnequal
IfEqual:
ret i32 1
IfUnequal:
ret i32 0