]> git.saurik.com Git - apt.git/commitdiff
ParseDepends: Mark branches for build-dep parsing as unlikely
authorJulian Andres Klode <jak@debian.org>
Sun, 27 Dec 2015 10:50:05 +0000 (11:50 +0100)
committerJulian Andres Klode <jak@debian.org>
Sun, 27 Dec 2015 10:50:05 +0000 (11:50 +0100)
We do not see those branches at all during normal mode of
operation (that is, during cache generation), so tell the
compiler about it.

apt-pkg/deb/deblistparser.cc

index 121e02cd250c79099b043c682e44fcac213a90e2..874a94e24de1869e6bd9fd2860e4298ab59c66f8 100644 (file)
@@ -609,7 +609,7 @@ const char *debListParser::ParseDepends(const char *Start,const char *Stop,
    // Skip whitespace
    for (;I != Stop && isspace_ascii(*I) != 0; I++);
 
-   if (ParseArchFlags == true)
+   if (unlikely(ParseArchFlags == true))
    {
       string const arch = _config->Find("APT::Architecture");
       APT::CacheFilter::PackageArchitectureMatchesSpecification matchesArch(arch, false);
@@ -669,7 +669,7 @@ const char *debListParser::ParseDepends(const char *Start,const char *Stop,
       for (;I != Stop && isspace_ascii(*I) != 0; I++);
    }
 
-   if (ParseRestrictionsList == true)
+   if (unlikely(ParseRestrictionsList == true))
    {
       // Parse a restrictions formula which is in disjunctive normal form:
       // (foo AND bar) OR (blub AND bla)