fix some indention-with-spaces that crept in
[musl] / src / thread / x86_64 / __set_thread_area.s
1 /* Copyright 2011-2012 Nicholas J. Kain, licensed under standard MIT license */
2 .text
3 .global __set_thread_area
4 .type __set_thread_area,@function
5 __set_thread_area:
6         mov %rdi,%rsi           /* shift for syscall */
7         movl $0x1002,%edi       /* SET_FS register */
8         movl $158,%eax          /* set fs segment to */
9         syscall                 /* arch_prctl(SET_FS, arg)*/
10         ret