diff options
author | Tom Stellard <[email protected]> | 2012-08-31 11:29:49 -0400 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-08-31 12:54:58 -0400 |
commit | 022f6d88616bf5ea3903c5056d6147e9cf356aa9 (patch) | |
tree | cd93db13aa7434b8b09d8900bec327906a27bfd1 /src/gallium/drivers/radeon/Makefile.sources | |
parent | 1cee70c5d836ee4c3981910ee46ed9d7471d39d8 (diff) |
radeon/llvm: Rework how immediate operands are handled with SI
Immediate operands were previously handled in the CodeEmitter, but that
code was buggy and very confusing. This commit adds a pass that simplifies
the handling of immediate operands by spliting the loading of the
immediate into a sperate insruction that is bundled with the original.
Diffstat (limited to 'src/gallium/drivers/radeon/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/radeon/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/Makefile.sources b/src/gallium/drivers/radeon/Makefile.sources index 687acb3f420..2eb11208957 100644 --- a/src/gallium/drivers/radeon/Makefile.sources +++ b/src/gallium/drivers/radeon/Makefile.sources @@ -46,6 +46,7 @@ CPP_SOURCES := \ SIAssignInterpRegs.cpp \ SIInstrInfo.cpp \ SIISelLowering.cpp \ + SILowerLiteralConstants.cpp \ SIMachineFunctionInfo.cpp \ SIRegisterInfo.cpp \ InstPrinter/AMDGPUInstPrinter.cpp \ |