summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsSEISelLowering.h
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2013-10-15 13:14:41 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2013-10-15 13:14:41 +0000
commit62e87cb2415b305ca9b888a2338a6af59e74005d (patch)
tree184ee0f09c99f434db355b90117074a28fd570b9 /lib/Target/Mips/MipsSEISelLowering.h
parentbfcd45cfe114311b32b171c529fd387dd8eac55f (diff)
downloadllvm-62e87cb2415b305ca9b888a2338a6af59e74005d.tar.gz
llvm-62e87cb2415b305ca9b888a2338a6af59e74005d.tar.bz2
llvm-62e87cb2415b305ca9b888a2338a6af59e74005d.tar.xz
[mips][msa] Added support for build_vector for v4f32 and v2f64.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192699 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSEISelLowering.h')
-rw-r--r--lib/Target/Mips/MipsSEISelLowering.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Target/Mips/MipsSEISelLowering.h b/lib/Target/Mips/MipsSEISelLowering.h
index 52e2053ae2..c20cbffbb2 100644
--- a/lib/Target/Mips/MipsSEISelLowering.h
+++ b/lib/Target/Mips/MipsSEISelLowering.h
@@ -96,6 +96,12 @@ namespace llvm {
/// \brief Emit the INSERT_FD pseudo instruction
MachineBasicBlock *emitINSERT_FD(MachineInstr *MI,
MachineBasicBlock *BB) const;
+ /// \brief Emit the FILL_FW pseudo instruction
+ MachineBasicBlock *emitFILL_FW(MachineInstr *MI,
+ MachineBasicBlock *BB) const;
+ /// \brief Emit the FILL_FD pseudo instruction
+ MachineBasicBlock *emitFILL_FD(MachineInstr *MI,
+ MachineBasicBlock *BB) const;
};
}