diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-05 16:50:53 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-05 16:50:53 +0000 |
commit | 384b854a7c87895a1971b15842b85379c6c1eed5 (patch) | |
tree | 05eeee62cc50b465b5c8a46f8c7b43afdc12fac1 /lib/Target/SystemZ/SystemZInstrInfo.td | |
parent | d0186114ac6ff61c907790e462feaca8b0400a6f (diff) | |
download | external_llvm-384b854a7c87895a1971b15842b85379c6c1eed5.zip external_llvm-384b854a7c87895a1971b15842b85379c6c1eed5.tar.gz external_llvm-384b854a7c87895a1971b15842b85379c6c1eed5.tar.bz2 |
Convert bswap test to filecheck, add more test entries & convert stuff to filecheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZInstrInfo.td')
-rw-r--r-- | lib/Target/SystemZ/SystemZInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZInstrInfo.td b/lib/Target/SystemZ/SystemZInstrInfo.td index 58ea46c..810d027 100644 --- a/lib/Target/SystemZ/SystemZInstrInfo.td +++ b/lib/Target/SystemZ/SystemZInstrInfo.td @@ -510,7 +510,7 @@ def BSWAP64rm : RXYI<0x0FE3, (outs GR64:$dst), (ins rriaddr:$src), // [(truncstorei16 (bswap GR32:$src), rriaddr:$dst)]>; def BSWAP32mr : RXYI<0xE33E, (outs), (ins rriaddr:$dst, GR32:$src), "strv\t{$src, $dst}", - [(truncstorei32 (bswap GR32:$src), rriaddr:$dst)]>; + [(store (bswap GR32:$src), rriaddr:$dst)]>; def BSWAP64mr : RXYI<0xE32F, (outs), (ins rriaddr:$dst, GR64:$src), "strvg\t{$src, $dst}", [(store (bswap GR64:$src), rriaddr:$dst)]>; |