Skip to content

Commit

Permalink
[NFC] Remove unnecessary check prefix of AIX test
Browse files Browse the repository at this point in the history
9e9b0f4 introduced support for asm-full-reg-names on AIX. Now we can
merge the test check prefix.
  • Loading branch information
ecnelises committed Nov 11, 2021
1 parent 839d818 commit bc39ce9
Showing 1 changed file with 1 addition and 36 deletions.
37 changes: 1 addition & 36 deletions llvm/test/CodeGen/PowerPC/builtins-ppc-xlcompat-sync-64.ll
Expand Up @@ -4,18 +4,13 @@
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-unknown \
; RUN: --ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s
; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-aix \
; RUN: --ppc-asm-full-reg-names -mcpu=pwr7 < %s | FileCheck %s --check-prefix=CHECK-AIX
; RUN: --ppc-asm-full-reg-names -mcpu=pwr7 < %s | FileCheck %s

define dso_local i64 @test_builtin_ppc_popcntb_i64(i64 %a) local_unnamed_addr {
; CHECK-LABEL: test_builtin_ppc_popcntb_i64:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: popcntb r3, r3
; CHECK-NEXT: blr
;
; CHECK-AIX-LABEL: test_builtin_ppc_popcntb_i64:
; CHECK-AIX: # %bb.0: # %entry
; CHECK-AIX-NEXT: popcntb r3, r3
; CHECK-AIX-NEXT: blr
entry:
%popcntb = tail call i64 @llvm.ppc.popcntb.i64.i64(i64 %a)
ret i64 %popcntb
Expand All @@ -29,13 +24,6 @@ define dso_local void @test_builtin_ppc_eieio() {
; CHECK-NEXT: ori r2, r2, 0
; CHECK-NEXT: eieio
; CHECK-NEXT: blr
;
; CHECK-AIX-LABEL: test_builtin_ppc_eieio:
; CHECK-AIX: # %bb.0: # %entry
; CHECK-AIX-NEXT: ori r2, r2, 0
; CHECK-AIX-NEXT: ori r2, r2, 0
; CHECK-AIX-NEXT: eieio
; CHECK-AIX-NEXT: blr
entry:
call void @llvm.ppc.eieio()
ret void
Expand All @@ -49,13 +37,6 @@ define dso_local void @test_builtin_ppc_iospace_eieio() {
; CHECK-NEXT: ori r2, r2, 0
; CHECK-NEXT: eieio
; CHECK-NEXT: blr
;
; CHECK-AIX-LABEL: test_builtin_ppc_iospace_eieio:
; CHECK-AIX: # %bb.0: # %entry
; CHECK-AIX-NEXT: ori r2, r2, 0
; CHECK-AIX-NEXT: ori r2, r2, 0
; CHECK-AIX-NEXT: eieio
; CHECK-AIX-NEXT: blr
entry:
call void @llvm.ppc.iospace.eieio()
ret void
Expand All @@ -67,11 +48,6 @@ define dso_local void @test_builtin_ppc_iospace_lwsync() {
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: lwsync
; CHECK-NEXT: blr
;
; CHECK-AIX-LABEL: test_builtin_ppc_iospace_lwsync:
; CHECK-AIX: # %bb.0: # %entry
; CHECK-AIX-NEXT: lwsync
; CHECK-AIX-NEXT: blr
entry:
call void @llvm.ppc.iospace.lwsync()
ret void
Expand All @@ -83,11 +59,6 @@ define dso_local void @test_builtin_ppc_iospace_sync() {
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: sync
; CHECK-NEXT: blr
;
; CHECK-AIX-LABEL: test_builtin_ppc_iospace_sync:
; CHECK-AIX: # %bb.0: # %entry
; CHECK-AIX-NEXT: sync
; CHECK-AIX-NEXT: blr
entry:
call void @llvm.ppc.iospace.sync()
ret void
Expand All @@ -100,12 +71,6 @@ define dso_local void @test_builtin_ppc_icbt() {
; CHECK-NEXT: ld r3, -8(r1)
; CHECK-NEXT: icbt 0, 0, r3
; CHECK-NEXT: blr
;
; CHECK-AIX-LABEL: test_builtin_ppc_icbt:
; CHECK-AIX: # %bb.0: # %entry
; CHECK-AIX-NEXT: ld r3, -8(r1)
; CHECK-AIX-NEXT: icbt 0, 0, r3
; CHECK-AIX-NEXT: blr
entry:
%a = alloca i8*, align 8
%0 = load i8*, i8** %a, align 8
Expand Down

0 comments on commit bc39ce9

Please sign in to comment.