summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsSEISelLowering.h
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2014-02-05 23:15:53 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2014-02-05 23:15:53 +0000
commitbb7bf85f3c7149e74e1cc2be823d558e33469bad (patch)
tree8e02d7228f66a6e6ff14374286dd4507aed30d13 /lib/Target/Mips/MipsSEISelLowering.h
parentdf7da79db6879032da83de83a90f981cacdb5f1a (diff)
downloadllvm-bb7bf85f3c7149e74e1cc2be823d558e33469bad.tar.gz
llvm-bb7bf85f3c7149e74e1cc2be823d558e33469bad.tar.bz2
llvm-bb7bf85f3c7149e74e1cc2be823d558e33469bad.tar.xz
Add address space argument to allowsUnalignedMemoryAccess.
On R600, some address spaces have more strict alignment requirements than others. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200887 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSEISelLowering.h')
-rw-r--r--lib/Target/Mips/MipsSEISelLowering.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsSEISelLowering.h b/lib/Target/Mips/MipsSEISelLowering.h
index c5210d94b3..75a9b86e50 100644
--- a/lib/Target/Mips/MipsSEISelLowering.h
+++ b/lib/Target/Mips/MipsSEISelLowering.h
@@ -30,7 +30,9 @@ namespace llvm {
void addMSAFloatType(MVT::SimpleValueType Ty,
const TargetRegisterClass *RC);
- virtual bool allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const;
+ virtual bool allowsUnalignedMemoryAccesses(
+ EVT VT, unsigned AS = 0,
+ bool *Fast = 0) const LLVM_OVERRIDE;
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;