Fix cpplint whitespace/braces issues
Change-Id: Ide80939faf8e8690d8842dde8133902ac725ed1a
diff --git a/runtime/compiled_method.cc b/runtime/compiled_method.cc
index 757a324..49706ae 100644
--- a/runtime/compiled_method.cc
+++ b/runtime/compiled_method.cc
@@ -19,8 +19,7 @@
namespace art {
CompiledCode::CompiledCode(InstructionSet instruction_set, const std::vector<uint8_t>& code)
- : instruction_set_(instruction_set), code_(code)
-{
+ : instruction_set_(instruction_set), code_(code) {
CHECK_NE(code.size(), 0U);
}
@@ -118,8 +117,7 @@
const std::vector<uint8_t>& native_gc_map)
: CompiledCode(instruction_set, code), frame_size_in_bytes_(frame_size_in_bytes),
core_spill_mask_(core_spill_mask), fp_spill_mask_(fp_spill_mask),
- gc_map_(native_gc_map)
-{
+ gc_map_(native_gc_map) {
DCHECK_EQ(vmap_table.size(),
static_cast<uint32_t>(__builtin_popcount(core_spill_mask)
+ __builtin_popcount(fp_spill_mask)));