mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-28 22:20:43 +00:00
eece9dc81c
While the patch was perfect and defect free, it exposed a really nasty bug in X86 SelectionDAG that caused an llc crash when compiling lencod. I'll put the patch back in after fixing the SelectionDAG problem. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155181 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
638 B
LLVM
25 lines
638 B
LLVM
; RUN: opt -O3 -S %s | FileCheck %s
|
|
|
|
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
|
|
target triple = "x86_64-apple-macosx10.6.7"
|
|
|
|
declare i8* @malloc(i64)
|
|
declare void @free(i8*)
|
|
|
|
|
|
; PR2338
|
|
define void @test1() nounwind ssp {
|
|
%retval = alloca i32, align 4
|
|
%i = alloca i8*, align 8
|
|
%call = call i8* @malloc(i64 1)
|
|
store i8* %call, i8** %i, align 8
|
|
%tmp = load i8** %i, align 8
|
|
store i8 1, i8* %tmp
|
|
%tmp1 = load i8** %i, align 8
|
|
call void @free(i8* %tmp1)
|
|
ret void
|
|
|
|
; CHECK: @test1
|
|
; CHECK-NEXT: ret void
|
|
}
|