Fix aarch64 build.
We recently gained -Werror=missing-prototypes. (See also, we really need to get those Android bots...) Change-Id: I3962d3050bccf5f5a057d029b5cbff1695ca1a03 Reviewed-on: https://boringssl-review.googlesource.com/7540 Reviewed-by: Emily Stark (Dunn) <estark@google.com> Reviewed-by: David Benjamin <davidben@google.com>
This commit is contained in:
parent
95b9769340
commit
be12248829
@ -392,14 +392,14 @@ void gcm_ghash_neon(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp,
|
|||||||
static int neon_capable(void) {
|
static int neon_capable(void) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
void gcm_init_neon(u128 Htable[16], const uint64_t Xi[2]) {
|
static void gcm_init_neon(u128 Htable[16], const uint64_t Xi[2]) {
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
void gcm_gmult_neon(uint64_t Xi[2], const u128 Htable[16]) {
|
static void gcm_gmult_neon(uint64_t Xi[2], const u128 Htable[16]) {
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
void gcm_ghash_neon(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp,
|
static void gcm_ghash_neon(uint64_t Xi[2], const u128 Htable[16],
|
||||||
size_t len) {
|
const uint8_t *inp, size_t len) {
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user