about summary refs log tree commit diff stats
path: root/reproducers/issue-2175.c
blob: aabfd96d0a92c2b0e6d05b03fb15227bb5c20a16 (plain) (blame)
1
2
3
4
5
6
7
8
9
int main() {
  __asm__ (
    "movq $0x1, %r8\n"
    "mov $0xedbf530a, %r9\n"
    "blsi %r9d, %r8d\n"
  );

  return 0;
}