Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-serrano committed Dec 15, 2023
1 parent 8658d6e commit 7d1b8d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/doc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"github": "https://github.com/manuel-serrano/hiphop.git"
"urlbase": "ftp://ftp-sop.inria.fr/indes/fp/HipHop",
"homepage": "http://hop.inria.fr/hiphop",
"date": "14 December 2023",
"date": "15 December 2023",
"chapters": [ { "name": "Home", "icon": "glyphicon-home", "href": "index.html" },
{ "name": "Download", "icon": "glyphicon-cloud-download", "href": "download.html" },
{ "name": "Dev", "icon": "glyphicon-cog", "href": "dev.html" },
Expand Down
6 changes: 3 additions & 3 deletions lib/compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/* ------------------------------------------------------------- */
/* Author : Colin Vidal, Manuel Serrano */
/* Creation : Mon Jul 16 18:06:28 2018 */
/* Last change : Thu Dec 14 07:56:41 2023 (serrano) */
/* Last change : Fri Dec 15 15:37:47 2023 (serrano) */
/* Copyright : 2018-23 Inria */
/* ------------------------------------------------------------- */
/* HipHop compiler */
Expand Down Expand Up @@ -1821,9 +1821,9 @@ function compile(machine, ast_node) {
dumpNets(machine, true, ".nets+.json");
}
}
let { loc, size, signals, json, posFlag} =
let { loc, size, signals, json, posFlag } =
causality.findCausalityErrorDeep(machine, true);
if (size > 0 && machine.verbose >= 2) {
if (size > 0 && machine.verbose >= 3) {
console.log(`Warning: Potential causality cycle`, json);
} else
if (size < 0) {
Expand Down
2 changes: 1 addition & 1 deletion test/samelocalname.hh.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use @hop/hiphop"
"use hopscript"

import * as hh from "@host/hiphost";
import * as hh from "@hop/hiphop";
import { format } from "util";

hiphop module prg() {
Expand Down

0 comments on commit 7d1b8d5

Please sign in to comment.