diff options
author | José Fonseca <[email protected]> | 2010-03-05 15:22:43 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-03-06 09:34:31 +0000 |
commit | ccf57af93f7118a044fa21e874847fa3ed555bca (patch) | |
tree | d16d88f26bd0b00c737d92ec8e1ccd06911198f1 | |
parent | 32631b69f503c26b010fb1bef5de5dcd012a2bcb (diff) |
gallivm: Add a placeholder for TGSI_FILE_PREDICATE registers.
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c index 5f2c2a54ee9..84d03a145f7 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c @@ -384,6 +384,11 @@ emit_store( assert(0); break; + case TGSI_FILE_PREDICATE: + /* FIXME */ + assert(0); + break; + default: assert( 0 ); } |