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:
parent
a3b56a661c
commit
0deb8df600
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user