Displaying 1 result from an estimated 1 matches for "a2008".
Did you mean:
2008
2010 Jan 21
2
[LLVMdev] how to compile asm output for x86 with Micorsoft's ML
...e bitcode generated like so:
llc --x86-asm-syntax=intel test.out
it generates a test.out.s file, and while I'm not much of an assembly
person, it looks OK. When I feed this to ML
ml test.out.s
I get tons of errors, most of which appear to be syntax errors. Stuff like:
test.out.s(2) : error A2008:syntax error : .
error A2008:syntax error : objc_class_name_Fraction
etc. Is it possible to generate X86 code that Microsoft's assembler
will accept? Is there another option that I missed? I looked around a
bit but couldn't find anything. The example on the llvm site mentions
being able to...