diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/bpf_verifier.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/bpf_verifier.h b/include/linux/bpf_verifier.h index d7fbc0e1559b..d3dc46aae2e7 100644 --- a/include/linux/bpf_verifier.h +++ b/include/linux/bpf_verifier.h @@ -256,11 +256,6 @@ static inline spis_t spis_and(spis_t a, spis_t b) return (spis_t){{ a.v[0] & b.v[0], a.v[1] & b.v[1] }}; } -static inline spis_t spis_xor(spis_t a, spis_t b) -{ - return (spis_t){{ a.v[0] ^ b.v[0], a.v[1] ^ b.v[1] }}; -} - static inline spis_t spis_not(spis_t s) { return (spis_t){{ ~s.v[0], ~s.v[1] }}; |
