From 62e150b836337e3e9a492e5fc14223a0fc0b79b7 Mon Sep 17 00:00:00 2001 From: Ilya Yaroshenko Date: Mon, 11 Jul 2016 11:39:07 +0200 Subject: [PATCH] __asmtuple is not pure and etc --- src/ldc/llvmasm.di | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ldc/llvmasm.di b/src/ldc/llvmasm.di index 5bb33eceed..48ab978b0b 100644 --- a/src/ldc/llvmasm.di +++ b/src/ldc/llvmasm.di @@ -12,6 +12,6 @@ pragma(LDC_inline_asm) template __asmtuple(T...) { - __asmtuple_t!(T) __asmtuple(const(char)[] asmcode, const(char)[] constraints, ...); + __asmtuple_t!(T) __asmtuple(const(char)[] asmcode, const(char)[] constraints, ...) pure nothrow @nogc; } }