Re: [Mesa-dev] [PATCH] x86-64: Fix compile error with clang

2011-08-10 Thread Ben Widawsky
On Wed, Aug 10, 2011 at 04:05:41PM -0700, Chad Versace wrote: > Remove the 'f' suffix from a float literal. > - .float 0.0f+1.0 > + .float 1.0 > > This fixes the following compile error with clang: > error: unexpected token in directive > .float 0.0f+1.0 > ^ > > Sign

[Mesa-dev] [PATCH] x86-64: Fix compile error with clang

2011-08-10 Thread Chad Versace
Remove the 'f' suffix from a float literal. - .float 0.0f+1.0 + .float 1.0 This fixes the following compile error with clang: error: unexpected token in directive .float 0.0f+1.0 ^ Signed-off-by: Chad Versace --- src/mesa/x86-64/xform4.S |2 +- 1 files changed,