tv: Let fc_comp() return an ir_relation instead of magic numbers.
[libfirm] / ir / tv / strcalc.h
index cea758f..8d74b81 100644 (file)
@@ -22,7 +22,6 @@
  * @brief    Provides basic mathematical operations on values represented as strings.
  * @date     2003
  * @author   Mathias Heil
- * @version  $Id$
  * @brief
  *
  * The module uses a string to represent values, and provides operations
@@ -168,6 +167,11 @@ void sc_shrI(const void *val1, long shift_cnt, int bitsize, int sign, void *buff
  */
 void sc_shr(const void *value1, const void *value2, int bitsize, int sign, void *buffer);
 
+/**
+ * buffer = value1 >>s offset
+ */
+void sc_shrsI(const void *val1, long shift_cnt, int bitsize, int sign, void *buffer);
+
 /**
  * buffer = value1 >>s value2
  */