You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
339 B
16 lines
339 B
; RUN: llc -mtriple=powerpc64le-unknown-linux-gnu < %s \
|
|
; RUN: -verify-machineinstrs -ppc-asm-full-reg-names \
|
|
; RUN: -ppc-vsr-nums-as-vr | FileCheck %s
|
|
|
|
define void @eieio_test() {
|
|
; CHECK-LABEL: @eieio_test
|
|
; CHECK: eieio
|
|
; CHECK-NEXT: blr
|
|
|
|
entry:
|
|
tail call void @llvm.ppc.eieio()
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.ppc.eieio()
|