nv50/ir: add definitions of Target and CodeEmitter dtors
authorChristoph Bumiller <christoph.bumiller@speed.at>
Sat, 19 Jan 2013 21:08:01 +0000 (22:08 +0100)
committerChristoph Bumiller <christoph.bumiller@speed.at>
Sat, 19 Jan 2013 21:13:45 +0000 (22:13 +0100)
I really did build test, my compiler just doesn't seem to care.

src/gallium/drivers/nv50/codegen/nv50_ir_target.h

index 757f4f9437f6cdb8e5d2a3cc48bef156dd7a0413..304dda4f865b7922b10a9ed785c189ca0f7d8bf9 100644 (file)
@@ -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 *);