diff options
author | Björn-Egil Dahlberg <[email protected]> | 2011-03-11 15:30:45 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2011-03-11 15:30:45 +0100 |
commit | 180e63e5c26de4dec25ea9c22bfbd5a7a2bb7e69 (patch) | |
tree | 332f36d7c9d674822f81ebeed6071a094da3556f /bootstrap/lib/compiler/egen | |
parent | 56d53600fa408834d957d1fbc1de0a58ee14d69c (diff) | |
download | otp-180e63e5c26de4dec25ea9c22bfbd5a7a2bb7e69.tar.gz otp-180e63e5c26de4dec25ea9c22bfbd5a7a2bb7e69.tar.bz2 otp-180e63e5c26de4dec25ea9c22bfbd5a7a2bb7e69.zip |
Update primary bootstrap
Diffstat (limited to 'bootstrap/lib/compiler/egen')
-rw-r--r-- | bootstrap/lib/compiler/egen/core_parse.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/lib/compiler/egen/core_parse.erl b/bootstrap/lib/compiler/egen/core_parse.erl index 6e3fead4a3..ec71481e44 100644 --- a/bootstrap/lib/compiler/egen/core_parse.erl +++ b/bootstrap/lib/compiler/egen/core_parse.erl @@ -13,7 +13,7 @@ tok_val(T) -> element(3, T). tok_line(T) -> element(2, T). --file("/usr/local/otp/releases/sles10_64_R14B_patched/lib/parsetools-2.0.4/include/yeccpre.hrl", 0). +-file("/usr/local/otp/releases/sles10_32_R14B01_patched/lib/parsetools-2.0.5/include/yeccpre.hrl", 0). %% %% %CopyrightBegin% %% @@ -183,7 +183,7 @@ yecctoken2string({char,_,C}) -> io_lib:write_char(C); yecctoken2string({var,_,V}) -> io_lib:format("~s", [V]); yecctoken2string({string,_,S}) -> io_lib:write_unicode_string(S); yecctoken2string({reserved_symbol, _, A}) -> io_lib:write(A); -yecctoken2string({_Cat, _, Val}) -> io_lib:write(Val); +yecctoken2string({_Cat, _, Val}) -> io_lib:format("~p",[Val]); yecctoken2string({dot, _}) -> "'.'"; yecctoken2string({'$end', _}) -> []; @@ -196,7 +196,7 @@ yecctoken2string(Other) -> --file("/ldisk/pan/git/otp/bootstrap/lib/compiler/egen/core_parse.erl", 199). +-file("/ldisk/egil/git/otp/bootstrap/lib/compiler/egen/core_parse.erl", 199). yeccpars2(0=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_0(S, Cat, Ss, Stack, T, Ts, Tzr); |