declaration.h (dmd-2.094.0) | : | declaration.h (dmd-2.094.1) | ||
---|---|---|---|---|
skipping to change at line 438 | skipping to change at line 438 | |||
enum ILS | enum ILS | |||
{ | { | |||
ILSuninitialized, // not computed yet | ILSuninitialized, // not computed yet | |||
ILSno, // cannot inline | ILSno, // cannot inline | |||
ILSyes // can inline | ILSyes // can inline | |||
}; | }; | |||
/**************************************************************/ | /**************************************************************/ | |||
enum class BUILTIN : char | enum class BUILTIN : unsigned char | |||
{ | { | |||
unknown = -1, /// not known if this is a builtin | unknown = 255, /// not known if this is a builtin | |||
unimp, /// this is not a builtin | unimp = 0, /// this is not a builtin | |||
gcc, /// this is a GCC builtin | gcc, /// this is a GCC builtin | |||
llvm, /// this is an LLVM builtin | llvm, /// this is an LLVM builtin | |||
sin, | sin, | |||
cos, | cos, | |||
tan, | tan, | |||
sqrt, | sqrt, | |||
fabs, | fabs, | |||
ldexp, | ldexp, | |||
log, | log, | |||
log2, | log2, | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |