about summary refs log tree commit diff stats
path: root/reproducers/issue-2175.c
diff options
context:
space:
mode:
Diffstat (limited to 'reproducers/issue-2175.c')
-rw-r--r--reproducers/issue-2175.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/reproducers/issue-2175.c b/reproducers/issue-2175.c
new file mode 100644
index 0000000..aabfd96
--- /dev/null
+++ b/reproducers/issue-2175.c
@@ -0,0 +1,9 @@
+int main() {
+  __asm__ (
+    "movq $0x1, %r8\n"
+    "mov $0xedbf530a, %r9\n"
+    "blsi %r9d, %r8d\n"
+  );
+
+  return 0;
+}