]> git.sur5r.net Git - cc65/blobdiff - src/cc65/datatype.h
Add code size factor for optimizer routines
[cc65] / src / cc65 / datatype.h
index b561da26f0bd60fc615934d5ffd13bf960551ea4..beabf2bd86067c40d1bbb34f3a9e9830584de56b 100644 (file)
@@ -287,10 +287,14 @@ int IsQualVolatile (const type* T) attribute ((const));
 /* Return true if the given type has a volatile type qualifier */
 
 int IsFastCallFunc (const type* T) attribute ((const));
-/* Return true if this is a function type with __fastcall__ calling conventions */
+/* Return true if this is a function type or pointer to function with
+ * __fastcall__ calling conventions
+ */
 
 int IsVariadicFunc (const type* T) attribute ((const));
-/* Return true if this is a function type with variable parameter list */
+/* Return true if this is a function type or pointer to function type with
+ * variable parameter list
+ */
 
 int IsTypeFuncPtr (const type* T) attribute ((const));
 /* Return true if this is a function pointer */