diff options
author | Jack Carter <jcarter@mips.com> | 2012-09-06 02:31:34 +0000 |
---|---|---|
committer | Jack Carter <jcarter@mips.com> | 2012-09-06 02:31:34 +0000 |
commit | a7570a3d8686a1fe2075b5bee01650490fa52b26 (patch) | |
tree | 530c7f2b4b93179a1890982c6ed329e26ecc0adc /lib/Target/Mips/CMakeLists.txt | |
parent | 557a20a23494c13fbcef90fcc8454f2c8aa33c22 (diff) |
There are some Mips instructions that are lowered by the
assembler such as shifts greater than 32. In the case
of direct object, the code gen needs to do this lowering
since the assembler is not involved.
With the advent of the llvm-mc assembler, it also needs
to do the same lowering.
This patch makes that specific lowering code accessible
to both the direct object output and the assembler.
This patch does not affect generated output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163287 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/CMakeLists.txt')
-rw-r--r-- | lib/Target/Mips/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Mips/CMakeLists.txt b/lib/Target/Mips/CMakeLists.txt index f535c504db..0f84358e26 100644 --- a/lib/Target/Mips/CMakeLists.txt +++ b/lib/Target/Mips/CMakeLists.txt @@ -21,6 +21,7 @@ add_llvm_target(MipsCodeGen MipsAsmPrinter.cpp MipsCodeEmitter.cpp MipsDelaySlotFiller.cpp + MipsDirectObjLower.cpp MipsELFWriterInfo.cpp MipsJITInfo.cpp MipsInstrInfo.cpp |