fix indent level
authorJason Lowdermilk <jlowder@chipscan.us>
Wed, 30 Aug 2017 17:46:41 +0000 (11:46 -0600)
committerJason Lowdermilk <jlowder@chipscan.us>
Wed, 30 Aug 2017 17:46:41 +0000 (11:46 -0600)
kernel/rtlil.cc

index f132d299b19c61d513d826e66f6672218b88eda7..9a97faf45413afe6990887b8e43b8252907f0041 100644 (file)
@@ -1620,7 +1620,7 @@ RTLIL::Cell *RTLIL::Module::addCell(RTLIL::IdString name, const RTLIL::Cell *oth
 }
 
 #define DEF_METHOD(_func, _y_size, _type) \
-               RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed, std::string src) { \
+       RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed, std::string src) { \
                RTLIL::Cell *cell = addCell(name, _type);           \
                cell->parameters["\\A_SIGNED"] = is_signed;         \
                cell->parameters["\\A_WIDTH"] = sig_a.size();       \
@@ -1630,7 +1630,7 @@ RTLIL::Cell *RTLIL::Module::addCell(RTLIL::IdString name, const RTLIL::Cell *oth
                if (!src.empty()) cell->attributes["\\src"] = src;  \
                return cell;                                        \
        } \
-               RTLIL::SigSpec RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed, std::string src) { \
+       RTLIL::SigSpec RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed, std::string src) { \
                RTLIL::SigSpec sig_y = addWire(NEW_ID, _y_size);    \
                add ## _func(name, sig_a, sig_y, is_signed, src);   \
                return sig_y;                                       \