Re: [Mesa-dev] [PATCH 3/5] aubinator: Simplify print_dword_val() method

2016-09-08 Thread Kenneth Graunke
On Thursday, September 8, 2016 4:15:20 PM PDT Sirisha Gandikota wrote: > From: Sirisha Gandikota > > Remove the float/dword union and use the iter->p[f->start / 32] > directly as printf formatter %08x expects uint32_t (Ken) > > Signed-off-by: Sirisha Gandikota > --- > src/intel/tools/aubinator

[Mesa-dev] [PATCH 3/5] aubinator: Simplify print_dword_val() method

2016-09-08 Thread Sirisha Gandikota
From: Sirisha Gandikota Remove the float/dword union and use the iter->p[f->start / 32] directly as printf formatter %08x expects uint32_t (Ken) Signed-off-by: Sirisha Gandikota --- src/intel/tools/aubinator.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/inte