diff options
author | Emil Velikov <[email protected]> | 2016-04-21 03:48:39 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-05-01 08:37:25 +0100 |
commit | 3f23a0f8c1ec81c84bd73ae0b7206aea0fbfe9da (patch) | |
tree | 5b3515c71dea99cd5794131e5eb4b744f5187b58 | |
parent | 0700cdd5aa37b24831e78121fd82adcb6179eb79 (diff) |
anv: remove description about GENX_FUNC macro
The macro has been gone since commit 1f1cf6fcb0e "anv: Get rid of
GENX_FUNC"
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Eduardo Lima Mitev <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/genxml/gen_macros.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/intel/genxml/gen_macros.h b/src/intel/genxml/gen_macros.h index 052c57f8a77..868bc2203c8 100644 --- a/src/intel/genxml/gen_macros.h +++ b/src/intel/genxml/gen_macros.h @@ -28,20 +28,6 @@ * The prefixing macros GENX() and genX() automatically prefix whatever you * give them by GENX_ or genX_ where X is the gen number. * - * You can declare a function to be used on some range of gens like this: - * - * GENX_FUNC(GEN7, GEN75) void - * genX(my_function_name)(args...) - * { - * // Do stuff - * } - * - * If the file is compiled for any set of gens containing gen7 and gen75, - * the function will effectively only get compiled twice as - * gen7_my_function_nmae and gen75_my_function_name. The function has to - * be compilable on all gens, but it will become a static inline that gets - * discarded by the compiler on all gens not in range. - * * You can do pseudo-runtime checks in your function such as * * if (GEN_GEN > 8 || GEN_IS_HASWELL) { |