Format with stable rustfmt-preview, then with rustfmt-0.9 again.

This commit is contained in:
Dan Gohman
2018-03-30 13:17:15 -07:00
parent d7c66a8ec1
commit 8d5fecd324
127 changed files with 381 additions and 479 deletions

View File

@@ -22,16 +22,16 @@
//!
//! That is why `translate_function_body` takes an object having the `WasmRuntime` trait as
//! argument.
use cretonne::ir::{self, InstBuilder, MemFlags, JumpTableData};
use cretonne::ir::{self, InstBuilder, JumpTableData, MemFlags};
use cretonne::ir::types::*;
use cretonne::ir::condcodes::{IntCC, FloatCC};
use cretonne::ir::condcodes::{FloatCC, IntCC};
use cretonne::packed_option::ReservedValue;
use cton_frontend::{FunctionBuilder, Variable};
use wasmparser::{Operator, MemoryImmediate};
use translation_utils::{f32_translation, f64_translation, type_to_type, num_return_values};
use translation_utils::{TableIndex, SignatureIndex, FunctionIndex, MemoryIndex};
use state::{TranslationState, ControlStackFrame};
use std::collections::{HashMap, hash_map};
use wasmparser::{MemoryImmediate, Operator};
use translation_utils::{num_return_values, type_to_type, f32_translation, f64_translation};
use translation_utils::{FunctionIndex, MemoryIndex, SignatureIndex, TableIndex};
use state::{ControlStackFrame, TranslationState};
use std::collections::{hash_map, HashMap};
use environ::{FuncEnvironment, GlobalValue};
use std::{i32, u32};
use std::vec::Vec;