Skip to content

Commit

Permalink
Fix compiler{32,64}Prog for I/O modes
Browse files Browse the repository at this point in the history
  • Loading branch information
xrchz committed Nov 5, 2018
1 parent 29b077c commit f1056b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/bootstrap/translation/compiler32ProgScript.sml
Expand Up @@ -248,7 +248,7 @@ val main_spec = Q.store_thm("main_spec",
\\ CONV_TAC SWAP_EXISTS_CONV
\\ qexists_tac`fs`
\\ xsimpl)
\\ xlet_auto >- (xsimpl \\ fs[FD_stdin])
\\ xlet_auto >- (xsimpl \\ fs[FD_stdin, STD_streams_get_mode])
\\ xlet_auto >- xsimpl
\\ xlet_auto >- xsimpl
\\ fs [full_compile_32_def]
Expand Down
2 changes: 1 addition & 1 deletion compiler/bootstrap/translation/compiler64ProgScript.sml
Expand Up @@ -267,7 +267,7 @@ val main_spec = Q.store_thm("main_spec",
\\ CONV_TAC SWAP_EXISTS_CONV
\\ qexists_tac`fs`
\\ xsimpl)
\\ xlet_auto >- (xsimpl \\ fs[FD_stdin])
\\ xlet_auto >- (xsimpl \\ fs[FD_stdin, STD_streams_get_mode])
\\ xlet_auto >- xsimpl
\\ xlet_auto >- xsimpl
\\ fs [full_compile_64_def]
Expand Down

0 comments on commit f1056b0

Please sign in to comment.