diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-09-29 10:39:40 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-09-29 10:39:40 +0000 |
| commit | 25e44d6ddf290db968db381b12d59b8b690b1721 (patch) | |
| tree | 11ff01eb8b6ac67fc825dd81af2b0b95337a75be /reproducers/issue-2248.c | |
| parent | cbf212bbb4ce51c09326bed44b462529f147820a (diff) | |
| download | focaccia-25e44d6ddf290db968db381b12d59b8b690b1721.tar.gz focaccia-25e44d6ddf290db968db381b12d59b8b690b1721.zip | |
Add basic reproducer for issue 2248 with Focaccia (hacked, does not work yet)
Diffstat (limited to 'reproducers/issue-2248.c')
| -rw-r--r-- | reproducers/issue-2248.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/reproducers/issue-2248.c b/reproducers/issue-2248.c new file mode 100644 index 0000000..03948df --- /dev/null +++ b/reproducers/issue-2248.c @@ -0,0 +1,10 @@ +#include <stdio.h> + +unsigned long long callme(unsigned long long _1, unsigned long long _2, unsigned long long a, unsigned long long b, unsigned long long c); + +int main() { + unsigned long long ret = callme(0, 0, 0, 1, 2); + printf("%lld\n", ret); + return 0; +} + |