From 4e9aba7c121bddc51ecbe2fa29582731a474c30f Mon Sep 17 00:00:00 2001
From: Chris Lattner
+Modules may contain "module-level inline asm" blocks, which corresponds to the +GCC "file scope inline asm" blocks. These blocks are internally concatenated by +LLVM and treated as a single unit, but may be separated in the .ll file if +desired. The syntax is very simple: +
+ ++ asm "inline asm code goes here" + asm "more can go here" +
The strings can contain any character by escaping non-printable characters. + The escape sequence used is simply "\xx" where "xx" is the two digit hex code + for the number. +
+ ++ The inline asm code is simply printed to the machine code .s file when + assembly code is generated. +
+