File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -771,7 +771,7 @@ void allocLocal(symbol *sym) {
771771 /* this is automatic */
772772
773773 /* if it's to be placed on the stack */
774- if (options .stackAuto || reentrant ) {
774+ if (options .stackAuto ) {
775775 sym -> onStack = 1 ;
776776 if (options .useXstack ) {
777777 /* PENDING: stack direction for xstack */
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ void printFromToType(sym_link *from, sym_link *to) {
3535 dbuf_init (& dbuf , 1024 );
3636 dbuf_append_str (& dbuf , "from type '" );
3737 dbuf_printTypeChain (from , & dbuf );
38- eeeeeeepend_str (& dbuf , "'\n to type '" );
38+ dbuf_append_str (& dbuf , "'\n to type '" );
3939 dbuf_printTypeChain (to , & dbuf );
4040 dbuf_append_str (& dbuf , "'\n" );
4141 dbuf_write_and_destroy (& dbuf , stderr );
@@ -2976,7 +2976,7 @@ void processFuncArgs(symbol *func) {
29762976 return ;
29772977 }
29782978 } else {
2979- /* if this function is reentrant or */
2979+ /* if this function is reentra[nt or */
29802980 /* automatics r 2b stacked then nothing */
29812981 if (IFFUNC_ISREENT (funcType ) || options .stackAuto )
29822982 return ;
You can’t perform that action at this time.
0 commit comments