mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
[ARM] Use the load-acquire/store-release instructions optimally in AArch32.
Patch by Artyom Skrobov. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191428 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -94,7 +94,7 @@ std::string ARM_MC::ParseARMTriple(StringRef TT, StringRef CPU) {
|
||||
unsigned SubVer = TT[Idx];
|
||||
if (SubVer == '8') {
|
||||
// FIXME: Parse v8 features
|
||||
ARMArchFeature = "+v8";
|
||||
ARMArchFeature = "+v8,+db";
|
||||
} else if (SubVer == '7') {
|
||||
if (Len >= Idx+2 && TT[Idx+1] == 'm') {
|
||||
isThumb = true;
|
||||
|
Reference in New Issue
Block a user