comparison graal/com.oracle.graal.boot/src/com/oracle/graal/boot/meta/CastElement.java @ 6292:b679a28208fd

disabled failing BigBangTests: helloWorldTest, formattedOutputTest, arrayListTestWithCalls made BigBangTest less verbose unless "BigBang.verbose" system property is set to "true"
author Doug Simon <doug.simon@oracle.com>
date Tue, 28 Aug 2012 11:43:06 +0200
parents 4d0f01e9f31b
children
comparison
equal deleted inserted replaced
6291:633136426f26 6292:b679a28208fd
46 // Filter through checkcast. 46 // Filter through checkcast.
47 for (ResolvedJavaType type : newSeenTypes) { 47 for (ResolvedJavaType type : newSeenTypes) {
48 if (type.isSubtypeOf(checkCastNode.targetClass())) { 48 if (type.isSubtypeOf(checkCastNode.targetClass())) {
49 newSet.add(type); 49 newSet.add(type);
50 } else { 50 } else {
51 System.out.println("filtering " + type + " vs " + checkCastNode.targetClass()); 51 BigBang.out.println("filtering " + type + " vs " + checkCastNode.targetClass());
52 } 52 }
53 } 53 }
54 super.unionTypes(bb, sourceNode, newSet); 54 super.unionTypes(bb, sourceNode, newSet);
55 } 55 }
56 56