Files
clang-p2996/llvm/test/CodeGen/X86/2008-01-25-EmptyFunction.ll
Chris Lattner 565896b9eb emit a 0 byte instead of a noop if a function is empty on darwin.
"0" is nice and target independent.

llvm-svn: 94718
2010-01-28 01:06:32 +00:00

9 lines
153 B
LLVM

; RUN: llc < %s -march=x86 | grep {.byte 0}
target triple = "i686-apple-darwin8"
define void @bork() noreturn nounwind {
entry:
unreachable
}