00001 /* N O A L I A S - P R A G . H 00002 * BRL-CAD 00003 * 00004 * Copyright (c) 2004-2006 United States Government as represented by 00005 * the U.S. Army Research Laboratory. 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public License 00009 * as published by the Free Software Foundation; either version 2.1 of 00010 * the License, or (at your option) any later version. 00011 * 00012 * This library is distributed in the hope that it will be useful, but 00013 * WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Library General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with this file; see the file named COPYING for more 00019 * information. 00020 */ 00021 00022 /** @addtogroup libbn */ 00023 /*@{*/ 00024 /** @file noalias-prag.h 00025 * 00026 * This header file is intended to be included by "noalis.h", 00027 * and may contain vendor-specific vectorization directives which 00028 * use the C preprocessor pragma directive and other ANSI-C constructions. 00029 * 00030 * This file will never be included when the compilation is not being 00031 * processed by an ANSI-C compiler. 00032 * 00033 * 00034 * @author David Becker Cray 00035 * @author Michael John Muuss BRL 00036 * 00037 * @par Source 00038 * SECAD/VLD Computing Consortium, Bldg 394 00039 *@n The U. S. Army Ballistic Research Laboratory 00040 *@n Aberdeen Proving Ground, Maryland 21005-5066 00041 * 00042 * @(#)$Header: /cvsroot/brlcad/brlcad/include/noalias-prag.h,v 14.8 2006/09/18 05:24:07 lbutler Exp $ (BRL) 00043 */ 00044 #if __STDC__ 00045 # if defined(CRAY) 00046 # pragma ivdep 00047 # endif 00048 # if defined(alliant) 00049 # pragma noeqvchk 00050 # endif 00051 #endif 00052 /*@}*/ 00053 /* 00054 * Local Variables: 00055 * mode: C 00056 * tab-width: 8 00057 * c-basic-offset: 4 00058 * indent-tabs-mode: t 00059 * End: 00060 * ex: shiftwidth=4 tabstop=8 00061 */ 00062