From 8ce8f21c3cc59f0737377c71da43bfe355aa69c5 Mon Sep 17 00:00:00 2001 From: Juergen Ributzka Date: Thu, 12 Jun 2014 20:34:09 +0000 Subject: [PATCH] [FastISel][X86] Argument lowering test case This test case is supposed to xfail, because we do not handle structs or byval arguments. llvm-svn: 210816 --- llvm/test/CodeGen/X86/fast-isel-args-fail2.ll | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 llvm/test/CodeGen/X86/fast-isel-args-fail2.ll diff --git a/llvm/test/CodeGen/X86/fast-isel-args-fail2.ll b/llvm/test/CodeGen/X86/fast-isel-args-fail2.ll new file mode 100644 index 0000000..1b5e55c --- /dev/null +++ b/llvm/test/CodeGen/X86/fast-isel-args-fail2.ll @@ -0,0 +1,10 @@ +; RUN: llc < %s -fast-isel -fast-isel-abort-args -mtriple=x86_64-apple-darwin10 +; XFAIL: * + +%struct.s0 = type { x86_fp80, x86_fp80 } + +; FastISel cannot handle this case yet. Make sure that we abort. +define i8* @args_fail(%struct.s0* byval nocapture readonly align 16 %y) { + %1 = bitcast %struct.s0* %y to i8* + ret i8* %1 +} -- 2.7.4