summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2012-03-20 17:41:51 +0000
committerKevin Enderby <enderby@apple.com>2012-03-20 17:41:51 +0000
commit9f2e160f7ae90a7a80b17e38ad06f2c706515115 (patch)
tree715ebd3f40002d380f9a44eb55488968edb8838c /lib
parent07cdd80ccc1a07edc565199c62d35ea0d80c6c1c (diff)
downloadllvm-9f2e160f7ae90a7a80b17e38ad06f2c706515115.tar.gz
llvm-9f2e160f7ae90a7a80b17e38ad06f2c706515115.tar.bz2
llvm-9f2e160f7ae90a7a80b17e38ad06f2c706515115.tar.xz
Fix assembling ARM vst2 instructions with double-spaced registers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153099 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/AsmParser/ARMAsmParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index ccdadd8166..911eb132e5 100644
--- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -1102,7 +1102,7 @@ public:
}
bool isVecListDPairSpaced() const {
- if (!isSingleSpacedVectorList()) return false;
+ if (isSingleSpacedVectorList()) return false;
return (ARMMCRegisterClasses[ARM::DPairSpcRegClassID]
.contains(VectorList.RegNum));
}