From d5556bc9a81ba5f5bd16f9c9d1d945f3e41355b7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 20 Jun 2009 20:10:01 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/resp/tuplr@141 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- llvm.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/llvm.cpp b/llvm.cpp index 13b6eaa..ddd5832 100644 --- a/llvm.cpp +++ b/llvm.cpp @@ -92,10 +92,11 @@ llEngine(CEnv& cenv) } #define LITERAL(CT, NAME, COMPILED) \ -template<> CValue \ -ALiteral::compile(CEnv& cenv) { return (COMPILED); } \ +template<> CValue ALiteral::compile(CEnv& cenv) { return (COMPILED); } \ template<> void \ -ALiteral::constrain(TEnv& tenv, Constraints& c) const { c.constrain(tenv, this, tenv.named(NAME)); } +ALiteral::constrain(TEnv& tenv, Constraints& c) const { \ + c.constrain(tenv, this, tenv.named(NAME)); \ +} /// Literal template instantiations LITERAL(int32_t, "Int", ConstantInt::get(Type::Int32Ty, val, true)) -- cgit v1.2.1