This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

PRESERVE8 in Arm Compiler 6

How to write PRESERVE8 as inline assembly syntax in AC6? Can I write as following?

void inlineAssemblyFunction() 
{
    __ASM volatile(
		".eabi_attribute Tag_ABI_align_preserved, 1 \n\t"
		"do something else"
	);
}