Deleted Added
full compact
30a31
> class TargetSelectionDAGInfo;
108c109,110
< virtual TargetLowering *getTargetLowering() const { return 0; }
---
> virtual const TargetLowering *getTargetLowering() const { return 0; }
> virtual const TargetSelectionDAGInfo *getSelectionDAGInfo() const{ return 0; }
173a176,190
> /// getDataSections - Return true if data objects should be emitted into their
> /// own section, corresponds to -fdata-sections.
> static bool getDataSections();
>
> /// getFunctionSections - Return true if functions should be emitted into
> /// their own section, corresponding to -ffunction-sections.
> static bool getFunctionSections();
>
> /// setDataSections - Set if the data are emit into separate sections.
> static void setDataSections(bool);
>
> /// setFunctionSections - Set if the functions are emit into separate
> /// sections.
> static void setFunctionSections(bool);
>