comparison gen/llvmhelpers.h @ 284:70c370e97944 trunk

[svn r305] Started support for custom class allocators/deallocators. Allocators with more than one argument still need to be fixed. Removed the LLVM stacktrace code from mars.c. Moved the LLVM based default target detection code from mars.c to llvmhelpers.cpp.
author lindquist
date Sat, 21 Jun 2008 02:48:53 +0200
parents a95056b3c996
children bef811104734
comparison
equal deleted inserted replaced
283:9bb48fb57a7d 284:70c370e97944
60 DValue* DtoBinSub(DValue* lhs, DValue* rhs); 60 DValue* DtoBinSub(DValue* lhs, DValue* rhs);
61 DValue* DtoBinMul(DValue* lhs, DValue* rhs); 61 DValue* DtoBinMul(DValue* lhs, DValue* rhs);
62 DValue* DtoBinDiv(DValue* lhs, DValue* rhs); 62 DValue* DtoBinDiv(DValue* lhs, DValue* rhs);
63 DValue* DtoBinRem(DValue* lhs, DValue* rhs); 63 DValue* DtoBinRem(DValue* lhs, DValue* rhs);
64 64
65 // target stuff
66 void findDefaultTarget();
67
65 #endif 68 #endif