Merge into master from pull request #216:
Generate LOCI wire type parsers from the IR (https://github.com/floodlight/loxigen/pull/216)
diff --git a/c_gen/c_code_gen.py b/c_gen/c_code_gen.py
index ff9a654..10668b7 100644
--- a/c_gen/c_code_gen.py
+++ b/c_gen/c_code_gen.py
@@ -739,7 +739,7 @@
 
 #define OF_MATCH_BYTES(length) (((length) + 7) & 0xfff8)
 
-#if __BYTE_ORDER == __ORDER_BIG_ENDIAN
+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
 #define U16_NTOH(val) (val)
 #define U32_NTOH(val) (val)
 #define U64_NTOH(val) (val)
diff --git a/openflow_input/standard-1.3 b/openflow_input/standard-1.3
index 6010880..723595f 100644
--- a/openflow_input/standard-1.3
+++ b/openflow_input/standard-1.3
@@ -1993,11 +1993,6 @@
     list(of_meter_band_t) entries;
 };
 
-struct of_experimenter_stats_header {
-    uint32_t experimenter == ?;
-    uint32_t subtype;
-};
-
 // END OF STATS OBJECTS
 
 struct of_queue_prop {