changeset 222:5888f32b6987

[project @ 2003-04-09 23:52:29 by bellard] update
author bellard
date Wed, 09 Apr 2003 23:52:29 +0000
parents 6e624a2dd7a0
children 804086b470ff
files tcc-doc.texi
diffstat 1 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/tcc-doc.texi	Mon Jan 06 20:24:13 2003 +0000
+++ b/tcc-doc.texi	Wed Apr 09 23:52:29 2003 +0000
@@ -594,8 +594,8 @@
 @file{libtcc_test.c} to have a very simple example.
 
 The idea consists in giving a C string containing the program you want
-to compile directly to @code{libtcc}. Then the @code{main()} function of
-the compiled string can be launched.
+to compile directly to @code{libtcc}. Then you can access to any global
+symbol (function or variable) defined.
 
 @chapter Developper's guide
 
@@ -715,8 +715,11 @@
 @item local_stack
 for the local variables, functions and types.
 
+@item global_label_stack
+for the local labels (for @code{goto}).
+
 @item label_stack
-for the local labels (for @code{goto}).
+for GCC block local labels (see the @code{__label__} keyword).
 
 @end table