mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Doh, fix behaviour change introduced in r176168 which is tested in clang,
not llvm. llvm-svn: 176172
This commit is contained in:
parent
6489b3c2b7
commit
c5554019e1
@ -735,7 +735,9 @@ void GCOVProfiler::insertIndirectCounterIncrement() {
|
|||||||
Arg->setName("counters");
|
Arg->setName("counters");
|
||||||
Value *GEP = Builder.CreateGEP(Arg, ZExtPred);
|
Value *GEP = Builder.CreateGEP(Arg, ZExtPred);
|
||||||
Value *Counter = Builder.CreateLoad(GEP, "counter");
|
Value *Counter = Builder.CreateLoad(GEP, "counter");
|
||||||
Cond = Builder.CreateICmpEQ(Counter, Builder.getInt64(0));
|
Cond = Builder.CreateICmpEQ(Counter,
|
||||||
|
Constant::getNullValue(
|
||||||
|
Builder.getInt64Ty()->getPointerTo()));
|
||||||
Builder.CreateCondBr(Cond, Exit, CounterEnd);
|
Builder.CreateCondBr(Cond, Exit, CounterEnd);
|
||||||
|
|
||||||
// ++*counter;
|
// ++*counter;
|
||||||
|
Loading…
Reference in New Issue
Block a user