diff options
author | Hal Finkel <hfinkel@anl.gov> | 2015-02-01 22:58:46 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2015-02-01 22:58:46 +0000 |
commit | 23a3eab65a750ea266e6f17f096e63f15b2de6fc (patch) | |
tree | cfe996f0698636ac1233898f3b5180a4cf0bd1aa /llvm/lib/Target/PowerPC/CMakeLists.txt | |
parent | 2859258e2faf21a120a2e4ed096b9af092347ea7 (diff) | |
download | bcm5719-llvm-23a3eab65a750ea266e6f17f096e63f15b2de6fc.tar.gz bcm5719-llvm-23a3eab65a750ea266e6f17f096e63f15b2de6fc.zip |
[PowerPC] Put PPCEarlyReturn into its own source file
PPCInstrInfo.cpp has ended up containing several small MI-level passes, and
this is making the file harder to read than necessary. Split out
PPCEarlyReturn into its own source file. NFC.
Now that PPCInstrInfo.cpp does not also contain pass implementations, I hope
that it will be slightly less unwieldy.
llvm-svn: 227775
Diffstat (limited to 'llvm/lib/Target/PowerPC/CMakeLists.txt')
-rw-r--r-- | llvm/lib/Target/PowerPC/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/CMakeLists.txt b/llvm/lib/Target/PowerPC/CMakeLists.txt index 6bf5c5fbce4..972cd525fba 100644 --- a/llvm/lib/Target/PowerPC/CMakeLists.txt +++ b/llvm/lib/Target/PowerPC/CMakeLists.txt @@ -20,6 +20,7 @@ add_llvm_target(PowerPCCodeGen PPCInstrInfo.cpp PPCISelDAGToDAG.cpp PPCISelLowering.cpp + PPCEarlyReturn.cpp PPCFastISel.cpp PPCFrameLowering.cpp PPCMCInstLower.cpp |