beflags: move be_Keep logic out of is_modify_flags function where it didn't really...
[libfirm] / ir / be / beemitter_binary.c
index f80246f..371e0a2 100644 (file)
@@ -32,6 +32,7 @@
 #include "beemitter_binary.h"
 #include "obst.h"
 #include "pdeq.h"
+#include "error.h"
 
 static code_fragment_t *first_fragment;
 static code_fragment_t *last_fragment;
@@ -176,6 +177,16 @@ static void determine_offsets(const binary_emiter_interface_t *interface)
        } while (changed);
 }
 
+void be_emit_entity(ir_entity *entity, bool entity_sign, int offset,
+                    bool is_relative)
+{
+       (void) entity;
+       (void) entity_sign;
+       (void) offset;
+       (void) is_relative;
+       panic("not implemented yet");
+}
+
 void be_emit_code(FILE *output, const binary_emiter_interface_t *interface)
 {
        unsigned offset;