Add comment
authorEddie Hung <eddieh@ece.ubc.ca>
Tue, 19 Feb 2019 18:24:55 +0000 (10:24 -0800)
committerEddie Hung <eddieh@ece.ubc.ca>
Tue, 19 Feb 2019 18:24:55 +0000 (10:24 -0800)
frontends/aiger/aigerparse.cc

index ef25b318c18606afbd2712338f07eaed2ef58911..a9c763339cab50f65fd74ebc004dfc5c9588c8fe 100644 (file)
@@ -32,7 +32,7 @@
 
 YOSYS_NAMESPACE_BEGIN
 
-#define log_debug log
+//#define log_debug log
 #define log_debug(...) ;
 
 AigerReader::AigerReader(RTLIL::Design *design, std::istream &f, RTLIL::IdString module_name, RTLIL::IdString clk_name, std::string map_filename, bool wideports)
@@ -209,6 +209,7 @@ static uint32_t parse_xaiger_literal(std::istream &f)
     f.read(reinterpret_cast<char*>(&l), sizeof(l));
     if (f.gcount() != sizeof(l))
         log_error("Offset %ld: unable to read literal!\n", static_cast<int64_t>(f.tellg()));
+    // TODO: Don't assume we're on little endian
 #ifdef _WIN32
     return _byteswap_ulong(l);
 #else