diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/bswap-05.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/bswap-05.ll | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/test/CodeGen/SystemZ/bswap-05.ll b/llvm/test/CodeGen/SystemZ/bswap-05.ll index 5f90ef3b9b6..ece3f3181d7 100644 --- a/llvm/test/CodeGen/SystemZ/bswap-05.ll +++ b/llvm/test/CodeGen/SystemZ/bswap-05.ll @@ -86,14 +86,3 @@ define void @f7(i64 %src, i64 %index, i64 %a) { ret void } -; Check that volatile stores do not use STRVG, which might access the -; storage multple times. -define void @f8(i64 *%dst, i64 %a) { -; CHECK-LABEL: f8: -; CHECK: lrvgr [[REG:%r[0-5]]], %r3 -; CHECK: stg [[REG]], 0(%r2) -; CHECK: br %r14 - %swapped = call i64 @llvm.bswap.i64(i64 %a) - store volatile i64 %swapped, i64 *%dst - ret void -} |