diff options
author | Tim Northover <tnorthover@apple.com> | 2015-06-02 18:37:20 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2015-06-02 18:37:20 +0000 |
commit | 3f3a4d8503de164f6c6b03e114f7094ce8a659ba (patch) | |
tree | c71d9a69401e85f9bd70fbf667b871bf752b0f80 /llvm/lib | |
parent | 264e542083cfff5c58553cceea5ba1d6c6d23921 (diff) | |
download | bcm5719-llvm-3f3a4d8503de164f6c6b03e114f7094ce8a659ba.tar.gz bcm5719-llvm-3f3a4d8503de164f6c6b03e114f7094ce8a659ba.zip |
AArch64: fix typo in SMIN far atomics and add tests
llvm-svn: 238858
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64InstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64InstrInfo.td b/llvm/lib/Target/AArch64/AArch64InstrInfo.td index 99f231a1e0e..2f1b8933bf6 100644 --- a/llvm/lib/Target/AArch64/AArch64InstrInfo.td +++ b/llvm/lib/Target/AArch64/AArch64InstrInfo.td @@ -789,7 +789,7 @@ defm LDSMAXA : LDOPregister<0b100, "smax", 1, 0, "a">; defm LDSMAXL : LDOPregister<0b100, "smax", 0, 1, "l">; defm LDSMAXAL : LDOPregister<0b100, "smax", 1, 1, "al">; -defm LDSMIN : LDOPregister<0b101, "smin`", 0, 0, "">; +defm LDSMIN : LDOPregister<0b101, "smin", 0, 0, "">; defm LDSMINA : LDOPregister<0b101, "smin", 1, 0, "a">; defm LDSMINL : LDOPregister<0b101, "smin", 0, 1, "l">; defm LDSMINAL : LDOPregister<0b101, "smin", 1, 1, "al">; |