summaryrefslogtreecommitdiff
path: root/src/gallium
diff options
context:
space:
mode:
authorChristoph Bumiller <christoph.bumiller@speed.at>2013-01-19 22:08:01 +0100
committerChristoph Bumiller <christoph.bumiller@speed.at>2013-01-19 22:13:45 +0100
commite264b8ef4138fb874bcf3f82cfd7468ee27768da (patch)
treef533d5c2968e55a07f2176e28354a23d4bec2d09 /src/gallium
parent7d2d450ea6d8082db14cd3f86c6c25442bf771c5 (diff)
nv50/ir: add definitions of Target and CodeEmitter dtors
I really did build test, my compiler just doesn't seem to care.
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/nv50/codegen/nv50_ir_target.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_target.h b/src/gallium/drivers/nv50/codegen/nv50_ir_target.h
index 757f4f9437f..304dda4f865 100644
--- a/src/gallium/drivers/nv50/codegen/nv50_ir_target.h
+++ b/src/gallium/drivers/nv50/codegen/nv50_ir_target.h
@@ -62,7 +62,7 @@ class CodeEmitter
{
public:
CodeEmitter(const Target *);
- virtual ~CodeEmitter();
+ virtual ~CodeEmitter() { }
// returns whether the instruction was encodable and written
virtual bool emitInstruction(Instruction *) = 0;
@@ -118,7 +118,7 @@ class Target
{
public:
Target(bool j, bool s) : joinAnterior(j), hasSWSched(s) { }
- virtual ~Target();
+ virtual ~Target() { }
static Target *create(uint32_t chipset);
static void destroy(Target *);