diff options
author | Vadim Girlin <[email protected]> | 2013-02-01 13:19:35 +0400 |
---|---|---|
committer | Vadim Girlin <[email protected]> | 2013-02-01 13:19:35 +0400 |
commit | 9824755daef3beed6b6d5b5d248db9ecf04e2900 (patch) | |
tree | 2c25460d9c90a77b49ce93c2752bde137412f73b /src/gallium/drivers | |
parent | e42111ecbaca8b6dab3c8a7a8cbc295bb6b404eb (diff) |
r600g: remove broken assert from r600_isa.c
Signed-off-by: Vadim Girlin <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r600/r600_isa.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_isa.c b/src/gallium/drivers/r600/r600_isa.c index e3a29c3cdee..20b17594f49 100644 --- a/src/gallium/drivers/r600/r600_isa.c +++ b/src/gallium/drivers/r600/r600_isa.c @@ -32,8 +32,6 @@ int r600_isa_init(struct r600_context *ctx, struct r600_isa *isa) { assert(ctx->chip_class >= R600 && ctx->chip_class <= CAYMAN); isa->hw_class = ctx->chip_class - R600; - assert(isa->hw_class >= ISA_CC_R600 && isa->hw_class <= ISA_CC_EVERGREEN); - /* reverse lookup maps are required for bytecode parsing only, * currently it's needed for handling the bytestream from llvm backend */ #if defined R600_USE_LLVM || defined HAVE_OPENCL |