You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
911f2e7dc4
Reviewers: abrachet Differential Revision: https://reviews.llvm.org/D76783
20 lines
383 B
TableGen
20 lines
383 B
TableGen
def GnuExtensions : StandardSpec<"GNUExtensions"> {
|
|
HeaderSpec Math = HeaderSpec<
|
|
"math.h",
|
|
[], // Macros
|
|
[], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"sincosf",
|
|
RetValSpec<VoidType>,
|
|
[ArgSpec<FloatType>, ArgSpec<FloatPtr>, ArgSpec<FloatPtr>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
let Headers = [
|
|
Math,
|
|
];
|
|
}
|