mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-25 12:20:17 +01:00
nv50,nvc0: Fix invalid constant.
Fix clang build error.
CXX codegen/nv50_ir_lowering_nvc0.lo
codegen/nv50_ir_lowering_nvc0.cpp:1783:42: error: invalid suffix 'd' on floating constant
Value *zero = bld.loadImm(NULL, 0.0d);
^
Fixes: c1e4a6bfbf ("nv50,nvc0: handle SQRT lowering inside the driver")
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
46610238e0
commit
a100d89d09
1 changed files with 1 additions and 1 deletions
|
|
@ -1780,7 +1780,7 @@ NVC0LoweringPass::handleSQRT(Instruction *i)
|
|||
{
|
||||
if (i->dType == TYPE_F64) {
|
||||
Value *pred = bld.getSSA(1, FILE_PREDICATE);
|
||||
Value *zero = bld.loadImm(NULL, 0.0d);
|
||||
Value *zero = bld.loadImm(NULL, 0);
|
||||
Value *dst = bld.getSSA(8);
|
||||
bld.mkOp1(OP_RSQ, i->dType, dst, i->getSrc(0));
|
||||
bld.mkCmp(OP_SET, CC_LE, i->dType, pred, i->dType, i->getSrc(0), zero);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue