bechordal_draw: Remove the write-only attribute max_color from struct draw_chordal_env_t.
[libfirm] / ir / lower / lower_calls.h
index f9b448d..24192eb 100644 (file)
@@ -1,27 +1,12 @@
 /*
- * Copyright (C) 1995-2011 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.
- *
- * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
 
 /**
  * @file
  * @brief   Lowering of calls with compound arguments
  * @author  Michael Beck
- * @version $Id$
  */
 #ifndef FIRM_LOWER_CALLS_H
 #define FIRM_LOWER_CALLS_H
@@ -35,7 +20,7 @@ typedef enum compound_call_lowering_flags {
        LF_NONE                 = 0,      /**< no additional flags */
        LF_RETURN_HIDDEN        = 1 << 0, /**< return the hidden address instead of void */
        LF_DONT_LOWER_ARGUMENTS = 1 << 1, /**< don't lower compound call arguments
-                                              (some backends can handle them themselfes) */
+                                              (some backends can handle them themselves) */
 } compound_call_lowering_flags;
 ENUM_BITSET(compound_call_lowering_flags)