changeset 23125:fe57bf1e3595

TraceRA: add SuppressWarnings "try".
author Josef Eisl <josef.eisl@jku.at>
date Mon, 30 Nov 2015 17:38:22 +0100
parents 23f9a72eb037
children aadd99d250fe
files graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/trace/TraceRegisterAllocationPhase.java
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/trace/TraceRegisterAllocationPhase.java	Mon Nov 30 17:18:36 2015 +0100
+++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/alloc/trace/TraceRegisterAllocationPhase.java	Mon Nov 30 17:38:22 2015 +0100
@@ -121,6 +121,7 @@
      * Note: Incoming Values are needed for the RegisterVerifier, otherwise SIGMAs/PHIs where the
      * Out and In value matches (ie. there is no resolution move) are falsely detected as errors.
      */
+    @SuppressWarnings("try")
     private static void deconstructSSIForm(LIR lir) {
         for (AbstractBlockBase<?> block : lir.getControlFlowGraph().getBlocks()) {
             try (Indent i = Debug.logAndIndent("Fixup Block %s", block)) {