From 56fff598410a7fbb1f77032e90ad25a8cf34313f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 27 May 2004 05:51:00 +0000 Subject: [PATCH] gc_init now gets an argument git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13816 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/Generic/GC/alloc_loop.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/Generic/GC/alloc_loop.ll b/test/CodeGen/Generic/GC/alloc_loop.ll index de9d47598b2..254f56dbe06 100644 --- a/test/CodeGen/Generic/GC/alloc_loop.ll +++ b/test/CodeGen/Generic/GC/alloc_loop.ll @@ -1,7 +1,7 @@ implementation declare sbyte* %llvm_gc_allocate(uint) -declare void %llvm_gc_initialize() +declare void %llvm_gc_initialize(uint) declare void %llvm.gcroot(sbyte**, sbyte*) declare void %llvm.gcwrite(sbyte*, sbyte**) @@ -11,7 +11,7 @@ entry: %A = alloca sbyte* %B = alloca sbyte** - call void %llvm_gc_initialize() + call void %llvm_gc_initialize(uint 1048576) ; Start with 1MB heap ;; void *A; call void %llvm.gcroot(sbyte** %A, sbyte* null)