Added initial support for raw LLVM inline asm.

This commit is contained in:
Tomas Lindquist Olsen
2009-03-28 06:32:06 +01:00
parent 36f6ebc77f
commit 99b863e2b1
9 changed files with 163 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
module ldc.llvmasm;
pragma(llvm_inline_asm)
template __asm()
{
void __asm(char[] asmcode, char[] constraints, ...);
}