diff options
author | Akira Hatanaka <ahatanak@gmail.com> | 2011-04-15 19:52:08 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanak@gmail.com> | 2011-04-15 19:52:08 +0000 |
commit | 99a2e98eddf00c4afd3817564cb8c914a6f66ae9 (patch) | |
tree | e8a278000fc29086534d63dc2e15a3af6217841f /lib/Target/Mips/Mips.h | |
parent | b6a638898a92d5cd782209fbeb673fe7846a29eb (diff) |
Add pass that expands pseudo instructions into target instructions after register allocation. Define pseudos that get expanded into mtc1 or mfc1 instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129594 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/Mips.h')
-rw-r--r-- | lib/Target/Mips/Mips.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Mips/Mips.h b/lib/Target/Mips/Mips.h index fb3c49221f..05b4c5a070 100644 --- a/lib/Target/Mips/Mips.h +++ b/lib/Target/Mips/Mips.h @@ -25,6 +25,7 @@ namespace llvm { FunctionPass *createMipsISelDag(MipsTargetMachine &TM); FunctionPass *createMipsDelaySlotFillerPass(MipsTargetMachine &TM); + FunctionPass *createMipsExpandPseudoPass(MipsTargetMachine &TM); extern Target TheMipsTarget; extern Target TheMipselTarget; |