summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/Mips16ISelLowering.cpp
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/Mips16ISelLowering.cpp
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/Mips16ISelLowering.cpp')
-rw-r--r--lib/Target/Mips/Mips16ISelLowering.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/Mips/Mips16ISelLowering.cpp b/lib/Target/Mips/Mips16ISelLowering.cpp
index b0860cc2c1..91d18eaa18 100644
--- a/lib/Target/Mips/Mips16ISelLowering.cpp
+++ b/lib/Target/Mips/Mips16ISelLowering.cpp
@@ -159,7 +159,9 @@ llvm::createMips16TargetLowering(MipsTargetMachine &TM) {
}
bool
-Mips16TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
+Mips16TargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
+ unsigned,
+ bool *Fast) const {
return false;
}