forked from OSchip/llvm-project
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,
|
||
|
];
|
||
|
}
|