From 079b8b7efd685f0b6b4cd7e4a4f6dc641792296b Mon Sep 17 00:00:00 2001
From: Julien Lopez <julien.lopez@lri.fr>
Date: Wed, 7 Jun 2017 14:03:02 +0200
Subject: [PATCH] Update to new QIR version

---
 .../com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java b/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java
index 9c02ae6c7f..f11bee2785 100644
--- a/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java
+++ b/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java
@@ -229,7 +229,7 @@ public final class QIRInterface {
             final String dbName = (String) env.get("dbName");
             final String configFile = (String) env.get("configFile");
             if (tableName != null && dbName != null && configFile != null) // The object is a table
-                return new QIRTable<>(src, new QIRString(null, tableName), new QIRString(null, dbName), new QIRString(null, configFile), new QIRString(null, schemaName));
+                return new QIRTable(src, new QIRString(null, tableName), new QIRString(null, dbName), new QIRString(null, configFile), new QIRString(null, schemaName));
             // else, the object is considered a tuple
             QIRTuple tuple = QIRTnil.instance;
             for (final Object x : env.getFrame().getFrameDescriptor().getIdentifiers())
@@ -257,7 +257,7 @@ public final class QIRInterface {
                     final QIRVariable schemaName = new QIRVariable(null, "__tmp4__");
                     return new QIRLambda(null, null, tableName,
                                     new QIRLambda(null, null, dbName, new QIRLambda(null, null, configFile,
-                                                    new QIRLambda(null, null, schemaName, new QIRTable<>(src, tableName, dbName, configFile, schemaName),
+                                                    new QIRLambda(null, null, schemaName, new QIRTable(src, tableName, dbName, configFile, schemaName),
                                                                     new FrameDescriptor()),
                                                     new FrameDescriptor()),
                                                     new FrameDescriptor()),
-- 
GitLab