added missing const
[libfirm] / ir / debug / seqnumbers.h
index 541129a..d26d9fb 100644 (file)
@@ -44,6 +44,16 @@ typedef struct sn_entry *seqno_t;
  */
 seqno_t firm_seqno_enter(const char *filename, unsigned lineno);
 
+/**
+ * Create a new sequence number from a filename ident and a line number.
+ *
+ * @param filename  an ident
+ * @param lineno    a line number
+ *
+ * @return  a sequence number for this position.
+ */
+seqno_t firm_seqno_enter_id(ident *filename, unsigned lineno);
+
 /**
  * Retrieve filename and line number from a sequence number.
  *