X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopyilp1.c;h=44c16d4a8efd18eb1facd561c6d2b8a7b3779d71;hb=0fbcef83aa6060534172bb13e71cdadb04428806;hp=063d0dcc6140999892ee103a5d4261c86b11ddf6;hpb=f262930b86ccb30ae0b33a17946f8365b30dcb45;p=libfirm diff --git a/ir/be/becopyilp1.c b/ir/be/becopyilp1.c index 063d0dcc6..44c16d4a8 100644 --- a/ir/be/becopyilp1.c +++ b/ir/be/becopyilp1.c @@ -1,17 +1,30 @@ -/** - * Author: Daniel Grund - * Date: 17.05.2005 - * Copyright: (c) Universitaet Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. - * CVS-ID: $Id$ +/* + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. * - * ILP formalization using: - * ???? + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif /* HAVE_CONFIG_H */ +/** + * @file + * @brief ILP formalization using: ??? + * @author Daniel Grund + * @date 17.05.2005 + * @version $Id$ + */ +#include "config.h" /* HAVE_CONFIG_H */ #ifdef WITH_ILP @@ -24,13 +37,16 @@ typedef struct _my_env_t { } my_env_t; -int co_solve_ilp1(copy_opt_t *co, double time_limit) { +int co_solve_ilp1(copy_opt_t *co, double time_limit) +{ + (void) co; + (void) time_limit; return 1; } #else /* WITH_ILP */ -static void only_that_you_can_compile_without_WITH_ILP_defined(void) { +static INLINE void only_that_you_can_compile_without_WITH_ILP_defined(void) { } #endif /* WITH_ILP */