mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
10 lines
305 B
C
10 lines
305 B
C
#if defined(__aarch64__) && !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
#ifndef _ARM_SVE_H_
|
|
#define _ARM_SVE_H_
|
|
#include "third_party/aarch64/arm_bf16.internal.h"
|
|
typedef __fp16 float16_t;
|
|
typedef float float32_t;
|
|
typedef double float64_t;
|
|
#pragma GCC aarch64 "third_party/aarch64/arm_sve.internal.h"
|
|
#endif
|
|
#endif
|