view ir/ir.h @ 1091:20d96c148b39

Fix for fmul/div/add/sub with no operands. Revert explicit ST0 definition since a typo had caused the need for that.
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Tue, 10 Mar 2009 18:34:19 -0600
parents eef8ac26c66c
children dbe4af57b240
line wrap: on
line source

// this head contains stuff used by all the IR

#ifndef LDC_IR_IR_H
#define LDC_IR_IR_H

#include "ir/irforw.h"
#include "root.h"

struct IrBase : Object
{
    virtual ~IrBase() {}
};

#endif