From e48a03a6509573f7f528217da8d649903a41f070 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 6 May 2012 20:04:33 +0200 Subject: [PATCH] Correct the documentation of new_tarval_from_str(). --- include/libfirm/tv.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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 * -- 2.20.1