diff options
author | Tom Stellard <[email protected]> | 2012-04-25 12:16:27 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-04-25 12:52:44 -0400 |
commit | 30f2a38cef4d4a75776fbd822ff4ad716302b888 (patch) | |
tree | 42e749570ba8478848076cb6b904bf0b139fad33 /src/gallium/drivers/radeon/SIMachineFunctionInfo.h | |
parent | 540ec964db1c0046935def3c85b2a5c7bd634782 (diff) |
radeon/llvm: Remove AMDILMachineFunctionInfo.cpp
Diffstat (limited to 'src/gallium/drivers/radeon/SIMachineFunctionInfo.h')
-rw-r--r-- | src/gallium/drivers/radeon/SIMachineFunctionInfo.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gallium/drivers/radeon/SIMachineFunctionInfo.h b/src/gallium/drivers/radeon/SIMachineFunctionInfo.h index 66feee9ef08..5647de9d81f 100644 --- a/src/gallium/drivers/radeon/SIMachineFunctionInfo.h +++ b/src/gallium/drivers/radeon/SIMachineFunctionInfo.h @@ -15,17 +15,16 @@ #ifndef _SIMACHINEFUNCTIONINFO_H_ #define _SIMACHINEFUNCTIONINFO_H_ -#include "AMDILMachineFunctionInfo.h" +#include "llvm/CodeGen/MachineFunction.h" namespace llvm { -class SIMachineFunctionInfo : public AMDILMachineFunctionInfo { +class SIMachineFunctionInfo : public MachineFunctionInfo { private: public: - SIMachineFunctionInfo(); - SIMachineFunctionInfo(MachineFunction &MF); + SIMachineFunctionInfo(const MachineFunction &MF); unsigned spi_ps_input_addr; }; |