comparison gen/arrays.h @ 11:d3ee9efe20e2 trunk

[svn r15] * Fixed a bunch problems with virtual calls. Seems I did some rather poor testing. * Now 50/51 tests compile. * Added a simple runalltests.d scripts that should be run with 'gdmd -run runalltests.d' - LLVMDC will not compile it yet.
author lindquist
date Tue, 02 Oct 2007 05:10:18 +0200
parents e116aa1488e6
children 8d45266bbabe
comparison
equal deleted inserted replaced
10:c0f2c47e5034 11:d3ee9efe20e2
1 #ifndef LLVMC_GEN_ARRAYS_H 1 #ifndef LLVMC_GEN_ARRAYS_H
2 #define LLVMC_GEN_ARRAYS_H 2 #define LLVMC_GEN_ARRAYS_H
3 3
4 llvm::StructType* LLVM_DtoArrayType(Type* t); 4 const llvm::StructType* LLVM_DtoArrayType(Type* t);
5 5
6 llvm::ArrayType* LLVM_DtoStaticArrayType(Type* t); 6 const llvm::ArrayType* LLVM_DtoStaticArrayType(Type* t);
7 7
8 llvm::Value* LLVM_DtoNullArray(llvm::Value* v); 8 llvm::Value* LLVM_DtoNullArray(llvm::Value* v);
9 9
10 llvm::Value* LLVM_DtoArrayAssign(llvm::Value* l, llvm::Value* r); 10 llvm::Value* LLVM_DtoArrayAssign(llvm::Value* l, llvm::Value* r);
11 11