diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-08-11 06:36:31 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-08-11 06:36:31 +0000 |
commit | ee34987fd58ed98c6987ed46979ccb46e7420919 (patch) | |
tree | 008701fce8b51ed4201c97a6affc704f554c43d7 /lib/Target/ARM/ARMInstrThumb2.td | |
parent | c7569ed4e43a25aa52cf3b5580f1ee00d7d5db96 (diff) | |
download | external_llvm-ee34987fd58ed98c6987ed46979ccb46e7420919.zip external_llvm-ee34987fd58ed98c6987ed46979ccb46e7420919.tar.gz external_llvm-ee34987fd58ed98c6987ed46979ccb46e7420919.tar.bz2 |
Really control isel of barrier instructions with cpu feature.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrThumb2.td')
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb2.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index aaacefb..67c8c95 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -2230,14 +2230,14 @@ def t2MOVCCror : T2I_movcc_sh<0b11, (outs rGPR:$dst), // memory barriers protect the atomic sequences let hasSideEffects = 1 in { def t2DMBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dmb", "", - [(ARMMemBarrier)]>, Requires<[HasDB]> { + [(ARMMemBarrier)]>, Requires<[IsThumb, HasDB]> { let Inst{31-4} = 0xF3BF8F5; // FIXME: add support for options other than a full system DMB let Inst{3-0} = 0b1111; } def t2DSBsy : AInoP<(outs), (ins), ThumbFrm, NoItinerary, "dsb", "", - [(ARMSyncBarrier)]>, Requires<[HasDB]> { + [(ARMSyncBarrier)]>, Requires<[IsThumb, HasDB]> { let Inst{31-4} = 0xF3BF8F4; // FIXME: add support for options other than a full system DSB let Inst{3-0} = 0b1111; |