Searched refs:PInf (Results 1 – 2 of 2) sorted by relevance
| /openbsd-src/gnu/usr.bin/perl/t/op/ |
| H A D | infnan.t | 24 my $PInf = "Inf" + 0; 32 my @PInf = ("Inf", "inf", "INF", "+Inf", 35 my @NInf = map { "-$_" } grep { ! /^\+/ } @PInf; 56 cmp_ok($PInf, '>', 0, "positive infinity"); 59 cmp_ok($PInf, '>', $NInf, "positive > negative"); 60 cmp_ok($NInf, '==', -$PInf, "negative == -positive"); 61 cmp_ok(-$NInf, '==', $PInf, "--negative == positive"); 63 is($PInf, "Inf", "$PInf value stringifies as Inf"); 66 cmp_ok($PInf + 0, '==', $PInf, "+Inf + zero is +Inf"); 69 cmp_ok($PInf + 1, '==', $PInf, "+Inf + one is +Inf"); [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | LegacyPassManager.cpp | 880 const PassInfo *PInf = TPM->findAnalysisPassInfo(PI); in recordAvailableAnalysis() local 881 if (!PInf) return; in recordAvailableAnalysis() 882 for (const PassInfo *PI : PInf->getInterfacesImplemented()) in recordAvailableAnalysis() 1002 if (const PassInfo *PInf = TPM->findAnalysisPassInfo(PI)) { in freePass() local 1008 for (const PassInfo *PI : PInf->getInterfacesImplemented()) { in freePass() 1254 const PassInfo *PInf = TPM->findAnalysisPassInfo(Set[i]); in dumpAnalysisUsage() local 1255 if (!PInf) { in dumpAnalysisUsage() 1261 dbgs() << ' ' << PInf->getPassName(); in dumpAnalysisUsage()
|