Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
Revert my previous exceptions commit. It was wrong.
Browse files Browse the repository at this point in the history
  • Loading branch information
tene committed Sep 18, 2008
1 parent 7b9f5c1 commit 2e11f4b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 15 deletions.
5 changes: 2 additions & 3 deletions src/wmlsstdlibs.pir
Expand Up @@ -109,10 +109,9 @@ helper for CALL_URL* opcodes.
if_null entry, _handler_2
.return (entry)
_handler_1:
.local pmc e, c
.local pmc e
.local string msg
.get_results (e, c)
msg = e
.get_results (e, msg)
print msg
print "\n"
$S0 = "verification failed (can't translate '"
Expand Down
5 changes: 2 additions & 3 deletions wmls2pbc.pir
Expand Up @@ -54,10 +54,9 @@ Francois Perrad.
save_pbc(pbc_out, filename)
end
_handler:
.local pmc e, c
.local pmc e
.local string s
.get_results (e, c)
s = e
.get_results (e, s)
print s
print "\n"
L1:
Expand Down
5 changes: 2 additions & 3 deletions wmls2pir.pir
Expand Up @@ -50,10 +50,9 @@ Francois Perrad.
save_pir(gen_pir, filename)
end
_handler:
.local pmc e, c
.local pmc e
.local string s
.get_results (e, c)
s = e
.get_results (e, s)
print s
print "\n"
L1:
Expand Down
5 changes: 2 additions & 3 deletions wmlsd.pir
Expand Up @@ -48,10 +48,9 @@ Francois Perrad.
script.dump()
end
_handler:
.local pmc e, c
.local pmc e
.local string msg
.get_results (e, c)
msg = e
.get_results (e, msg)
print msg
print "\n"
L1:
Expand Down
5 changes: 2 additions & 3 deletions wmlsi.pir
Expand Up @@ -79,10 +79,9 @@ Francois Perrad.
entry(params :flat)
end
_handler:
.local pmc e, c
.local pmc e
.local string s
.get_results (e, c)
s = e
.get_results (e, s)
print s
print "\n"
L1:
Expand Down

0 comments on commit 2e11f4b

Please sign in to comment.