From 60150a3dc498b78a10cfe9b467f08f1cdec9052d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 9 May 2009 18:11:50 +0000 Subject: [PATCH] fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71362 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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
-- 2.34.1