xref: /llvm-project/llvm/test/CodeGen/PowerPC/empty-functions.ll (revision bf8370ff36b504dfecd0594568f97c7a1a895c62)
1; RUN: llc < %s -mtriple=powerpc-apple-darwin | FileCheck -check-prefix=CHECK-NO-FP %s
2; RUN: llc < %s -mtriple=powerpc-apple-darwin -disable-fp-elim | FileCheck -check-prefix=CHECK-FP %s
3
4define void @func() {
5entry:
6  unreachable
7}
8; CHECK-NO-FP:     _func:
9; CHECK-NO-FP:     nop
10
11; CHECK-FP:      _func:
12; CHECK-FP:      nop
13