Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add compressed debug section float_ex1 files #125

Merged
merged 1 commit into from
Aug 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions elf/float_ex1/float_ex1.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bool fn1(int a, char *g, double q, struct Some *gg, some_t **out) {
if (!gg || !out) {
return false;
}
*out = malloc(sizeof(some_t));
*out = (some_t *)malloc(sizeof(some_t));
(*out)->a = a;
strncpy((*out)->b, g, 5);
(*out)->c = (float)q;
Expand All @@ -25,7 +25,7 @@ bool fn1(int a, char *g, double q, struct Some *gg, some_t **out) {
}

some_t *new_some() {
struct Some *n = malloc(sizeof(struct Some));
struct Some *n = (some_t *)malloc(sizeof(struct Some));
memset(n, 0, sizeof(*n));
return n;
}
Expand Down
Binary file added elf/float_ex1/float_ex1_arm_clang.dw.zlib
Binary file not shown.
Binary file added elf/float_ex1/float_ex1_arm_clang.dw.zstd
Binary file not shown.
Loading