diff options
author | Tom Stellard <[email protected]> | 2012-05-11 13:44:24 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-05-11 15:09:52 -0400 |
commit | bcfc97dbf40c256ed59c2424e0c55b845f0f2569 (patch) | |
tree | 75f46800f74716e7703c47a8f0b5b04a1551be6a /src/gallium/drivers/radeon/AMDGPUConvertToISA.cpp | |
parent | 23c0d469e55b3cb79ad4b2fd0d961562a26234fd (diff) |
radeon/llvm: More comments and cleanups
Diffstat (limited to 'src/gallium/drivers/radeon/AMDGPUConvertToISA.cpp')
-rw-r--r-- | src/gallium/drivers/radeon/AMDGPUConvertToISA.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/gallium/drivers/radeon/AMDGPUConvertToISA.cpp b/src/gallium/drivers/radeon/AMDGPUConvertToISA.cpp index 8e82b8438bb..1a3cf014d51 100644 --- a/src/gallium/drivers/radeon/AMDGPUConvertToISA.cpp +++ b/src/gallium/drivers/radeon/AMDGPUConvertToISA.cpp @@ -19,21 +19,20 @@ using namespace llvm; namespace { - class AMDGPUConvertToISAPass : public MachineFunctionPass { - private: - static char ID; - TargetMachine &TM; +class AMDGPUConvertToISAPass : public MachineFunctionPass { - void lowerFLT(MachineInstr &MI); +private: + static char ID; + TargetMachine &TM; - public: - AMDGPUConvertToISAPass(TargetMachine &tm) : - MachineFunctionPass(ID), TM(tm) { } +public: + AMDGPUConvertToISAPass(TargetMachine &tm) : + MachineFunctionPass(ID), TM(tm) { } - virtual bool runOnMachineFunction(MachineFunction &MF); + virtual bool runOnMachineFunction(MachineFunction &MF); +}; - }; } // End anonymous namespace char AMDGPUConvertToISAPass::ID = 0; |