[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / PowerPC / dssall.ll
blobc33b37cd53566b35dd11037d78727b90f7a24022
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
6 define dso_local void @test() local_unnamed_addr {
7 ; CHECK-LABEL: test:
8 ; CHECK:       # %bb.0: # %entry
9 ; CHECK-NEXT:    nop
10 ; CHECK-NEXT:    blr
12 ; NOTAIX-LABEL: test:
13 ; NOTAIX:       # %bb.0: # %entry
14 ; NOTAIX-NEXT:    dssall
15 ; NOTAIX-NEXT:    blr
16 entry:
17   tail call void @llvm.ppc.altivec.dssall()
18   ret void
21 declare void @llvm.ppc.altivec.dssall()