I have a few questions about LLVM assembly line string syntax. The syntax I have in mind is this:
@helloWorldString = private constant [13 x i8] c"hello world\0A\00"
In particular, I'm talking about form c"hello world\0A\00" .
I have two questions:
1) Where is this syntax documented?
2) How can I split a long string constant into several lines?
source share