about summary refs log tree commit diff stats
path: root/reproducers/issue-1828867.c
diff options
context:
space:
mode:
Diffstat (limited to 'reproducers/issue-1828867.c')
-rw-r--r--reproducers/issue-1828867.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/reproducers/issue-1828867.c b/reproducers/issue-1828867.c
new file mode 100644
index 0000000..5531de0
--- /dev/null
+++ b/reproducers/issue-1828867.c
@@ -0,0 +1,8 @@
+int main(int argc, char **argv) {
+    __asm__ (
+        ".intel_syntax noprefix\n"
+        ".byte 0x40, 0x9f\n"
+        ".att_syntax\n"
+    );
+    return 0;
+}