This time a question about the integrated assembler
--- code
.code32
.data
L1:
.quad 88
.equ L2, . - L1
.byte 29
.text
mov 55(%ebx), %eax
mov L2(%ebx), %eax
end code
clang -c -o file.o file.s gives this
-
8b4337 movl
I’m trying to parse the following file:
http://opensource.apple.com/source/IOUSBFamily/IOUSBFamily-630.4.5/IOUSBUserClient/Classes/IOUSBInterfaceUserClientV3.cpp
With the following command:
clang -ferror-limit=1000 -Xclang -ast-dump
-I$HOME/Downloads/IOUSBFamily-630.4.5/IOUSBUserClient/Head