comparison dmd/func.c @ 443:44f08170f4ef

Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn. Reworked the LLVMDC specific pragmas.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Fri, 01 Aug 2008 00:32:06 +0200
parents d8234836b40f
children 45a67b6f1310
comparison
equal deleted inserted replaced
442:76078c8ab5b9 443:44f08170f4ef
88 f->outId = outId; 88 f->outId = outId;
89 f->frequire = frequire ? frequire->syntaxCopy() : NULL; 89 f->frequire = frequire ? frequire->syntaxCopy() : NULL;
90 f->fensure = fensure ? fensure->syntaxCopy() : NULL; 90 f->fensure = fensure ? fensure->syntaxCopy() : NULL;
91 f->fbody = fbody ? fbody->syntaxCopy() : NULL; 91 f->fbody = fbody ? fbody->syntaxCopy() : NULL;
92 assert(!fthrows); // deprecated 92 assert(!fthrows); // deprecated
93
94 // LLVMDC
95 f->intrinsicName = intrinsicName;
96
93 return f; 97 return f;
94 } 98 }
95 99
96 100
97 // Do the semantic analysis on the external interface to the function. 101 // Do the semantic analysis on the external interface to the function.