1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Fix an incorrect comment, PR2147.

llvm-svn: 48323
This commit is contained in:
Chris Lattner 2008-03-13 03:29:42 +00:00
parent a3b56a661c
commit 0deb8df600

View File

@ -58,7 +58,7 @@ static Function *CreateFibFunction(Module *M) {
// Create an exit block.
BasicBlock* RecurseBB = new BasicBlock("recurse", FibF);
// Create the "if (arg < 2) goto exitbb"
// Create the "if (arg <= 2) goto exitbb"
Value *CondInst = new ICmpInst(ICmpInst::ICMP_SLE, ArgX, Two, "cond", BB);
new BranchInst(RetBB, RecurseBB, CondInst, BB);