summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-07-24 14:17:35 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2017-07-24 14:17:35 +0000
commitb4be762630e273ab8913261ad8b2a0a38353de2f (patch)
tree25cd74dcfc4175a258e0c9c86a082b3a128bf407 /searchlib
parent761677c3f844527aa67c75e718b05d13e7ff3386 (diff)
Use syntax that works for both gcc 7 and gcc 6.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/common/sortresults.cpp11
-rw-r--r--searchlib/src/vespa/searchlib/predicate/predicate_hash.h46
2 files changed, 28 insertions, 29 deletions
diff --git a/searchlib/src/vespa/searchlib/common/sortresults.cpp b/searchlib/src/vespa/searchlib/common/sortresults.cpp
index 0514ba5ebc1..11f6eb306eb 100644
--- a/searchlib/src/vespa/searchlib/common/sortresults.cpp
+++ b/searchlib/src/vespa/searchlib/common/sortresults.cpp
@@ -461,18 +461,17 @@ public:
default:
case 4:
r |= _data[a._idx + a._pos + 3] << 0;
- [[fallthrough]];
+ //@fallthrough@
case 3:
r |= _data[a._idx + a._pos + 2] << 8;
- [[fallthrough]];
+ //@fallthrough@
case 2:
r |= _data[a._idx + a._pos + 1] << 16;
- [[fallthrough]];
+ //@fallthrough@
case 1:
r |= _data[a._idx + a._pos + 0] << 24;
- [[fallthrough]];
- case 0:
- [[fallthrough]];
+ //@fallthrough@
+ case 0:;
}
a._pos += std::min(4u, left);
return r;
diff --git a/searchlib/src/vespa/searchlib/predicate/predicate_hash.h b/searchlib/src/vespa/searchlib/predicate/predicate_hash.h
index 7645a041cad..5b295e8bb41 100644
--- a/searchlib/src/vespa/searchlib/predicate/predicate_hash.h
+++ b/searchlib/src/vespa/searchlib/predicate/predicate_hash.h
@@ -75,30 +75,30 @@ struct PredicateHash {
// handle the last 23 bytes
c += origLen;
switch(len) { // all the case statements fall through
- case 23: c+=((0xffLL & aKey[offset+22])<<56); [[fallthrough]];
- case 22: c+=((0xffLL & aKey[offset+21])<<48); [[fallthrough]];
- case 21: c+=((0xffLL & aKey[offset+20])<<40); [[fallthrough]];
- case 20: c+=((0xffLL & aKey[offset+19])<<32); [[fallthrough]];
- case 19: c+=((0xffLL & aKey[offset+18])<<24); [[fallthrough]];
- case 18: c+=((0xffLL & aKey[offset+17])<<16); [[fallthrough]];
- case 17: c+=((0xffLL & aKey[offset+16])<<8); [[fallthrough]];
+ case 23: c+=((0xffLL & aKey[offset+22])<<56); //@fallthrough@
+ case 22: c+=((0xffLL & aKey[offset+21])<<48); //@fallthrough@
+ case 21: c+=((0xffLL & aKey[offset+20])<<40); //@fallthrough@
+ case 20: c+=((0xffLL & aKey[offset+19])<<32); //@fallthrough@
+ case 19: c+=((0xffLL & aKey[offset+18])<<24); //@fallthrough@
+ case 18: c+=((0xffLL & aKey[offset+17])<<16); //@fallthrough@
+ case 17: c+=((0xffLL & aKey[offset+16])<<8); //@fallthrough@
// the first byte of c is reserved for the length
- case 16: b+=((0xffLL & aKey[offset+15])<<56); [[fallthrough]];
- case 15: b+=((0xffLL & aKey[offset+14])<<48); [[fallthrough]];
- case 14: b+=((0xffLL & aKey[offset+13])<<40); [[fallthrough]];
- case 13: b+=((0xffLL & aKey[offset+12])<<32); [[fallthrough]];
- case 12: b+=((0xffLL & aKey[offset+11])<<24); [[fallthrough]];
- case 11: b+=((0xffLL & aKey[offset+10])<<16); [[fallthrough]];
- case 10: b+=((0xffLL & aKey[offset+ 9])<<8); [[fallthrough]];
- case 9: b+=( 0xffLL & aKey[offset+ 8]); [[fallthrough]];
- case 8: a+=((0xffLL & aKey[offset+ 7])<<56); [[fallthrough]];
- case 7: a+=((0xffLL & aKey[offset+ 6])<<48); [[fallthrough]];
- case 6: a+=((0xffLL & aKey[offset+ 5])<<40); [[fallthrough]];
- case 5: a+=((0xffLL & aKey[offset+ 4])<<32); [[fallthrough]];
- case 4: a+=((0xffLL & aKey[offset+ 3])<<24); [[fallthrough]];
- case 3: a+=((0xffLL & aKey[offset+ 2])<<16); [[fallthrough]];
- case 2: a+=((0xffLL & aKey[offset+ 1])<<8); [[fallthrough]];
- case 1: a+=( 0xffLL & aKey[offset+ 0]); [[fallthrough]];
+ case 16: b+=((0xffLL & aKey[offset+15])<<56); //@fallthrough@
+ case 15: b+=((0xffLL & aKey[offset+14])<<48); //@fallthrough@
+ case 14: b+=((0xffLL & aKey[offset+13])<<40); //@fallthrough@
+ case 13: b+=((0xffLL & aKey[offset+12])<<32); //@fallthrough@
+ case 12: b+=((0xffLL & aKey[offset+11])<<24); //@fallthrough@
+ case 11: b+=((0xffLL & aKey[offset+10])<<16); //@fallthrough@
+ case 10: b+=((0xffLL & aKey[offset+ 9])<<8); //@fallthrough@
+ case 9: b+=( 0xffLL & aKey[offset+ 8]); //@fallthrough@
+ case 8: a+=((0xffLL & aKey[offset+ 7])<<56); //@fallthrough@
+ case 7: a+=((0xffLL & aKey[offset+ 6])<<48); //@fallthrough@
+ case 6: a+=((0xffLL & aKey[offset+ 5])<<40); //@fallthrough@
+ case 5: a+=((0xffLL & aKey[offset+ 4])<<32); //@fallthrough@
+ case 4: a+=((0xffLL & aKey[offset+ 3])<<24); //@fallthrough@
+ case 3: a+=((0xffLL & aKey[offset+ 2])<<16); //@fallthrough@
+ case 2: a+=((0xffLL & aKey[offset+ 1])<<8); //@fallthrough@
+ case 1: a+=( 0xffLL & aKey[offset+ 0]); //@fallthrough@
// case 0: nothing left to add
}