comparison graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/typesystem/TypeSystemData.java @ 8248:c4c3f50fa9c2

Fixes for codegen builtins support.
author Christian Humer <christian.humer@gmail.com>
date Tue, 12 Mar 2013 11:37:32 +0100
parents 5f3cba05c2fa
children 0905d796944a
comparison
equal deleted inserted replaced
8247:5b08b0f4d338 8248:c4c3f50fa9c2
39 private final TypeMirror genericType; 39 private final TypeMirror genericType;
40 40
41 private final TypeData voidType; 41 private final TypeData voidType;
42 42
43 public TypeSystemData(TypeElement templateType, AnnotationMirror annotation, TypeData[] types, TypeMirror genericType, TypeData voidType) { 43 public TypeSystemData(TypeElement templateType, AnnotationMirror annotation, TypeData[] types, TypeMirror genericType, TypeData voidType) {
44 super(templateType, annotation); 44 super(templateType, null, annotation);
45 this.types = types; 45 this.types = types;
46 this.genericType = genericType; 46 this.genericType = genericType;
47 this.voidType = voidType; 47 this.voidType = voidType;
48 this.primitiveTypeMirrors = new TypeMirror[types.length]; 48 this.primitiveTypeMirrors = new TypeMirror[types.length];
49 for (int i = 0; i < types.length; i++) { 49 for (int i = 0; i < types.length; i++) {