Remove redundant #if config from encodeframe.c

Change-Id: Ic278cc3296813b52bfd228544971fc62779a2d1c
diff --git a/av1/encoder/encodeframe.c b/av1/encoder/encodeframe.c
index 42a6165..b1a979e 100644
--- a/av1/encoder/encodeframe.c
+++ b/av1/encoder/encodeframe.c
@@ -5774,13 +5774,8 @@
 #endif  // CONFIG_EXT_INTER
                      mi_row_pred, mi_col_pred, bsize_pred, b_sub8x8, block);
 
-  if (!dry_run && !bextend) {
-#if CONFIG_SUPERTX
+  if (!dry_run && !bextend)
     update_stats(&cpi->common, td, mi_row_pred, mi_col_pred, 1);
-#else
-    update_stats(&cpi->common, td, mi_row_pred, mi_col_pred);
-#endif
-  }
 }
 
 static void extend_dir(const AV1_COMP *const cpi, ThreadData *td,