From: Christoph Mallon Date: Sun, 6 May 2012 18:04:33 +0000 (+0200) Subject: Correct the documentation of new_tarval_from_str(). X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=e48a03a6509573f7f528217da8d649903a41f070;p=libfirm Correct the documentation of new_tarval_from_str(). --- diff --git a/include/libfirm/tv.h b/include/libfirm/tv.h index b616153ce..a013d8432 100644 --- a/include/libfirm/tv.h +++ b/include/libfirm/tv.h @@ -68,18 +68,16 @@ * This function accepts the following strings: * * if mode is int_number: - * - 0(x|X)[0-9a-fA-F]+ (hexadecimal representation) - * - 0[0-7]* (octal representation) - * - (+|-)?[1-9][0-9]* (decimal representation) + * - [+-]?0[xX][0-9a-fA-F]+ (hexadecimal representation) + * - [+-]?0[0-7]* (octal representation) + * - [+-]?[1-9][0-9]* (decimal representation) * * if mode is float_number: - * - (+|-)?(decimal int) (. (decimal int))? ((e|E)(+|-)?(decimal int))? + * - [+-]?(decimal int) (. (decimal int))? ([eE][+-]?(decimal int))? * * if mode is boolean: true, True, TRUE ... False... 0, 1, * - * if mode is reference: hexadecimal of decimal number as int - * - * if mode is character: hex or dec + * if mode is reference: "null" and the same as for int_number * * Leading and/or trailing spaces are ignored *