diff options
author | Pierre Moreau <pierre.morrow@free.fr> | 2016-05-19 20:13:50 +0200 |
---|---|---|
committer | Ilia Mirkin <imirkin@alum.mit.edu> | 2016-05-30 16:12:12 -0400 |
commit | ae708795309d7e6e590a0232bdac93188a96d78f (patch) | |
tree | 1b7c713223a89c210e891f81ab6d1a136ef0cf48 | |
parent | 9074470d7b7c9816a02ef6ae512b36df3ae770d8 (diff) |
nv50/ir: Add missing handling of U64/S64 in inlines
Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h b/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h index 4c5de2e82c..4cb53ab42e 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h @@ -126,7 +126,7 @@ static inline bool isFloatType(DataType ty) static inline bool isSignedIntType(DataType ty) { - return (ty == TYPE_S8 || ty == TYPE_S16 || ty == TYPE_S32); + return (ty == TYPE_S8 || ty == TYPE_S16 || ty == TYPE_S32 || ty == TYPE_S64); } static inline bool isSignedType(DataType ty) @@ -136,6 +136,7 @@ static inline bool isSignedType(DataType ty) case TYPE_U8: case TYPE_U16: case TYPE_U32: + case TYPE_U64: case TYPE_B96: case TYPE_B128: return false; @@ -147,6 +148,7 @@ static inline bool isSignedType(DataType ty) static inline DataType intTypeToSigned(DataType ty) { switch (ty) { + case TYPE_U64: return TYPE_S64; case TYPE_U32: return TYPE_S32; case TYPE_U16: return TYPE_S16; case TYPE_U8: return TYPE_S8; |