From 603a6e05902835a863e61019dcac77f67308b4d5 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 18 Nov 2006 21:55:45 +0000 Subject: [PATCH] Update a reference to the old setcc instruction. llvm-svn: 31860 --- docs/LangRef.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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