mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
11 lines
305 B
C
11 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
|