diff options
| author | Eric Christopher <echristo@gmail.com> | 2014-06-27 04:38:30 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2014-06-27 04:38:30 +0000 |
| commit | 5432e75a2544f3987dea5fe6c4c30763c3cdcb42 (patch) | |
| tree | 3e881046a0dd16f45a12b88b08b31bb3105734ea /llvm/lib/Target/Mips/MipsSelectionDAGInfo.h | |
| parent | dc2c47590420878d8edb49be4a4734e8f886278d (diff) | |
| download | bcm5719-llvm-5432e75a2544f3987dea5fe6c4c30763c3cdcb42.tar.gz bcm5719-llvm-5432e75a2544f3987dea5fe6c4c30763c3cdcb42.zip | |
Have MipsSelectionDAGInfo constructor take a DataLayout rather
than a target machine since it doesn't need anything past the
DataLayout.
llvm-svn: 211863
Diffstat (limited to 'llvm/lib/Target/Mips/MipsSelectionDAGInfo.h')
| -rw-r--r-- | llvm/lib/Target/Mips/MipsSelectionDAGInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsSelectionDAGInfo.h b/llvm/lib/Target/Mips/MipsSelectionDAGInfo.h index 6cafb558b35..2b3d527fe6f 100644 --- a/llvm/lib/Target/Mips/MipsSelectionDAGInfo.h +++ b/llvm/lib/Target/Mips/MipsSelectionDAGInfo.h @@ -22,7 +22,7 @@ class MipsTargetMachine; class MipsSelectionDAGInfo : public TargetSelectionDAGInfo { public: - explicit MipsSelectionDAGInfo(const MipsTargetMachine &TM); + explicit MipsSelectionDAGInfo(const DataLayout &DL); ~MipsSelectionDAGInfo(); }; |

