diff options
Diffstat (limited to 'reproducers/issue-2175.c')
| -rw-r--r-- | reproducers/issue-2175.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/reproducers/issue-2175.c b/reproducers/issue-2175.c new file mode 100644 index 0000000..abbb6f7 --- /dev/null +++ b/reproducers/issue-2175.c @@ -0,0 +1,16 @@ +int main() { + __asm__ ( + "movq $0x1, %r8\n" + "mov $0xedbf530a, %r9\n" + "push $0x1\n" + "popf\n" + "blsi %r9d, %r8d\n" + "pushf\n" + "pop %rax\n" + "pop %rbp\n" + "ret\n" + ); + + return 0; +} + |