Removed old moduleinit_backend from lphobos it's useless now.

This commit is contained in:
Tomas Lindquist Olsen
2008-08-04 19:38:59 +02:00
parent 3f1767fd49
commit 6fc52fd86b
2 changed files with 0 additions and 13 deletions

View File

@@ -19,10 +19,6 @@ llvmdc-build internal/arrays.d \
$LLVMDCFLAGS_ASM || exit 1
mv *.bc obj
echo "compiling module init backend"
llvm-as -f -o=obj/moduleinit_backend.bc internal/moduleinit_backend.ll || exit 1
llvm-link -f -o=../lib/llvmdcore.bc `ls obj/internal.*.bc` ../lib/llvmdcore.bc obj/moduleinit_backend.bc || exit 1
echo "compiling typeinfo 1"
llvmdc-build typeinfos1.d $LLVMDCFLAGS || exit 1
mv *.bc obj

View File

@@ -1,9 +0,0 @@
; ModuleID = 'internal.moduleinit_backend'
@_d_moduleinfo_array = appending constant [1 x i8*] [ i8* null ]
define i8** @_d_get_moduleinfo_array() {
entry:
%tmp = getelementptr [1 x i8*]* @_d_moduleinfo_array, i32 0, i32 0
ret i8** %tmp
}