Same error with Xcode 4.5.2:
<instantiation>:2:17: error: unexpected token in argument list movdqu $2*16(íx), %xmm7 ^
Luca
Hi All
I am trying to build a project which comprised a ".c" and ".S" file. If i use Xcode 3.x which has gcc, the project complies perfectly. If i migrate the project to use LLVM compiler using Xcode 4.4, it fails to compile the instruction "movdqu $2*16(íx), %xmm7". The below is the code snippet that i am using.
// // Hello.s // Assembly //
.globl _test_function
.macro test_macro zero, one, two
movdqu $2*16(íx), %xmm7
.endm
_test_function:
test_macro 0, 0, 0 ret
// // main.c // Assembly //
#include <stdio.h>
extern int test_function();
int main(int argc, const char * argv[]) {
printf("Return value %d\n", test_function()); return 0; }
Not sure what is happening with LLVM compiler.
Thanks Arun KA
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
|