1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py 2; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-ibm-aix-xcoff | \ 3; RUN: FileCheck %s 4; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64le-- | \ 5; RUN: FileCheck %s --check-prefix=NOTAIX 6define dso_local void @test() local_unnamed_addr { 7; CHECK-LABEL: test: 8; CHECK: # %bb.0: # %entry 9; CHECK-NEXT: nop 10; CHECK-NEXT: blr 11; 12; NOTAIX-LABEL: test: 13; NOTAIX: # %bb.0: # %entry 14; NOTAIX-NEXT: dssall 15; NOTAIX-NEXT: blr 16entry: 17 tail call void @llvm.ppc.altivec.dssall() 18 ret void 19} 20 21declare void @llvm.ppc.altivec.dssall() 22