1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/CodeGen/X86/fp-stack-O0-crash.ll
Jakob Stoklund Olesen e27902ac68 Simplify the tracking of used physregs to a bulk bitor followed by a transitive
closure after allocating all blocks.

Add a few more test cases for -regalloc=fast.

llvm-svn: 103500
2010-05-11 20:30:28 +00:00

32 lines
1.3 KiB
LLVM

; RUN: llc %s -O0 -fast-isel -regalloc=local -o -
; RUN: llc %s -O0 -fast-isel -regalloc=fast -o -
; PR4767
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
target triple = "i386-apple-darwin10"
define void @fn(x86_fp80 %x) nounwind ssp {
entry:
%x.addr = alloca x86_fp80 ; <x86_fp80*> [#uses=5]
store x86_fp80 %x, x86_fp80* %x.addr
br i1 false, label %cond.true, label %cond.false
cond.true: ; preds = %entry
%tmp = load x86_fp80* %x.addr ; <x86_fp80> [#uses=1]
%tmp1 = load x86_fp80* %x.addr ; <x86_fp80> [#uses=1]
%cmp = fcmp oeq x86_fp80 %tmp, %tmp1 ; <i1> [#uses=1]
br i1 %cmp, label %if.then, label %if.end
cond.false: ; preds = %entry
%tmp2 = load x86_fp80* %x.addr ; <x86_fp80> [#uses=1]
%tmp3 = load x86_fp80* %x.addr ; <x86_fp80> [#uses=1]
%cmp4 = fcmp une x86_fp80 %tmp2, %tmp3 ; <i1> [#uses=1]
br i1 %cmp4, label %if.then, label %if.end
if.then: ; preds = %cond.false, %cond.true
br label %if.end
if.end: ; preds = %if.then, %cond.false, %cond.true
ret void
}