We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f2d27f commit 7026b09Copy full SHA for 7026b09
crates/intrinsic-test/src/common/gen_c.rs
@@ -139,11 +139,11 @@ std::ostream& operator<<(std::ostream& os, float16_t value) {{
139
}
140
writeln!(w, "#endif")?;
141
142
+ writeln!(w, "int main(int argc, char **argv) {{")?;
143
+
144
// Define the arrays of arguments.
145
let arguments = intrinsic.arguments();
- arguments.gen_arglists_c(w, indentation, PASSES)?;
-
146
- writeln!(w, "int main(int argc, char **argv) {{")?;
+ arguments.gen_arglists_c(w, indentation.nested(), PASSES)?;
147
148
generate_c_constraint_blocks(
149
w,
0 commit comments