Module: Mesa Branch: master Commit: 725431a5dbce37f011f27521053707dce63731ff URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=725431a5dbce37f011f27521053707dce63731ff
Author: Samuel Pitoiset <[email protected]> Date: Mon Apr 25 22:45:17 2016 +0200 gm107/ir: s/invalid load/invalid store/ Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]> --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp index 31ddb11..35930e3 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp @@ -3031,7 +3031,7 @@ CodeEmitterGM107::emitInstruction(Instruction *i) case FILE_MEMORY_SHARED: emitSTS(); break; case FILE_MEMORY_GLOBAL: emitST(); break; default: - assert(!"invalid load"); + assert(!"invalid store"); emitNOP(); break; } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
