mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 00:25:50 -04:00
http://llvm.org/svn/llvm-project/llvm/branches/release_28@114020 Approved by: rpaulo (mentor)
12 lines
329 B
LLVM
12 lines
329 B
LLVM
; RUN: llc < %s -mtriple=powerpc-apple-darwin | FileCheck -check-prefix=CHECK-NO-FP %s
|
|
; RUN: llc < %s -mtriple=powerpc-apple-darwin -disable-fp-elim | FileCheck -check-prefix=CHECK-FP %s
|
|
|
|
define void @func() {
|
|
entry:
|
|
unreachable
|
|
}
|
|
; CHECK-NO-FP: _func:
|
|
; CHECK-NO-FP: nop
|
|
|
|
; CHECK-FP: _func:
|
|
; CHECK-FP: nop
|