mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
x86-64: Fix compile error with clang
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
^
Note: This is a candidate for the stable branches.
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Chad Versace <chad@chad-versace.us>
This commit is contained in:
parent
099aad2fb0
commit
9cd64ec35a
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@ p4_constants:
|
|||
.byte 0x00, 0x00, 0x00, 0x00
|
||||
.byte 0x00, 0x00, 0x00, 0x00
|
||||
.byte 0x00, 0x00, 0x00, 0x00
|
||||
.float 0f+1.0
|
||||
.float 1.0
|
||||
|
||||
.text
|
||||
.align 16
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue