public class Gcc472Test extends Dqrdc2Test {
@Test
public void fortranArray() throws Exception {
GimpleParser parser = new GimpleParser();
GimpleCompilationUnit unit = parser.parse(getClass().getResource("2darray.f.gcc.4.7.2.gimple"));
for(GimpleFunction fn : unit.getFunctions()) {
fn.setCallingConvention(new F77CallingConvention());
}
Class clazz = compileGimple("org.renjin.gcc.ArrayTestGcc472", Arrays.asList(unit));