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?

Fullscreen
1
2
3
4
5
6
7
void inlineAssemblyFunction()
{
__ASM volatile(
".eabi_attribute Tag_ABI_align_preserved, 1 \n\t"
"do something else"
);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

0