intel/genxml: Update macro documentation

This commit is contained in:
Jason Ekstrand 2016-02-22 21:20:04 -08:00
parent ae619a0355
commit 64e1c84059
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@
*
* You can do pseudo-runtime checks in your function such as
*
* if (ANV_GEN > 8 || ANV_IS_HASWELL) {
* if (GEN_GEN > 8 || GEN_IS_HASWELL) {
* // Do something
* }
*
@ -54,7 +54,7 @@
* For places where you really do have a compile-time conflict, you can
* use preprocessor logic:
*
* #if (ANV_GEN > 8 || ANV_IS_HASWELL)
* #if (GEN_GEN > 8 || GEN_IS_HASWELL)
* // Do something
* #endif
*