X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopyilp1.c;h=9749c90e1bb76bed7ebb560d6070dda61aab8851;hb=93da909d12b7bec51aa36ee5f05966c331f90fb9;hp=c6b287fdbdf4f27c019e511f58c73e690403d691;hpb=863d31d7a5c8210432fef88b30fc3e8353131538;p=libfirm diff --git a/ir/be/becopyilp1.c b/ir/be/becopyilp1.c index c6b287fdb..9749c90e1 100644 --- a/ir/be/becopyilp1.c +++ b/ir/be/becopyilp1.c @@ -1,18 +1,35 @@ -/** - * 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. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. * - * ILP formalization using: - * ???? + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ +/** + * @file + * @brief ILP formalization using: ??? + * @author Daniel Grund + * @date 17.05.2005 + * @version $Id$ + */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* HAVE_CONFIG_H */ +#include "firm_config.h" + #ifdef WITH_ILP #include "becopyilp_t.h" @@ -24,7 +41,10 @@ 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; }