diff --git a/benches/frontend.rs b/benches/frontend.rs
index f350e140..5261d178 100644
--- a/benches/frontend.rs
+++ b/benches/frontend.rs
@@ -18,7 +18,7 @@ fn parse_frontend_file(filename: &str) -> Expr {
}
fn compile_frontend_file(filename: &str) -> StandardProgram {
- match parse_frontend_file(filename).compile().unwrap() {
+ match parse_frontend_file(filename).compile(false).unwrap() {
// If we got back a valid program, assemble it and return the result.
Ok(asm_code) => asm_code.assemble(CALL_STACK_SIZE).unwrap().into(),
Err(asm_code) => asm_code.assemble(CALL_STACK_SIZE).unwrap(),
diff --git a/docs/sage/asm/core/enum.CoreOp.html b/docs/sage/asm/core/enum.CoreOp.html
index 3980bd86..253789e4 100644
--- a/docs/sage/asm/core/enum.CoreOp.html
+++ b/docs/sage/asm/core/enum.CoreOp.html
@@ -388,8 +388,8 @@
Put a string literal as UTF-8 to the output device.
Push a string literal as UTF-8 to the stack.
Allocate a string on the stack, and store its address in a destination register.
-
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
Deserialize this value from the given Serde deserializer.
Read more
Formats the value using the given formatter.
Read more
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
Deserialize this value from the given Serde deserializer.
Read more
Formats the value using the given formatter.
Read more
Compares and returns the maximum of two values.
Read more
This method tests for !=
. The default implementation is almost always
sufficient, and should not be overridden without very good reason.
This method returns an ordering between
self
and
other
values if one exists.
Read more
This method tests less than (for
self
and
other
) and is used by the
<
operator.
Read more
This method tests less than or equal to (for
self
and
other
) and is used by the
<=
operator.
Read more
This method tests greater than (for
self
and
other
) and is used by the
>
operator.
Read more
This method tests greater than or equal to (for
self
and
other
) and is used by the
>=
-operator.
Read more
Serialize this value into the given Serde serializer.
Read more
Serialize this value into the given Serde serializer.
Read more
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
@@ -418,5 +418,5 @@
T:
Clone,
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning.
Read more
Uses borrowed data to replace owned data, usually by cloning.
Read more
Converts the given value to a
String
.
Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.