diff options
Diffstat (limited to 'src/gallium/drivers/nouveau/codegen/nv50_ir_target.h')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_target.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h b/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h index 9eb0a1fe0fb..711056e5961 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h @@ -120,7 +120,7 @@ enum OpClass class Target { public: - Target(bool j, bool s) : joinAnterior(j), hasSWSched(s) { } + Target(bool m, bool j, bool s) : hasJoin(m), joinAnterior(j), hasSWSched(s) { } virtual ~Target() { } static Target *create(uint32_t chipset); @@ -192,6 +192,7 @@ public: virtual uint32_t getSVAddress(DataFile, const Symbol *) const = 0; public: + const bool hasJoin; // true if instructions have a join modifier const bool joinAnterior; // true if join is executed before the op const bool hasSWSched; // true if code should provide scheduling data |