bearch: Remove unnecessary test in arch_perform_memory_operand().
[libfirm] / ir / lpp / mps.h
index a2c07ad..ca6c53d 100644 (file)
@@ -1,8 +1,11 @@
+/*
+ * This file is part of libFirm.
+ * Copyright (C) 2012 Universitaet Karlsruhe
+ */
+
 /**
- * Author:      Daniel Grund
- * Date:        02.06.2005
- * Copyright:   (c) Universitaet Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * @file
+ * @author Daniel Grund
  */
 #ifndef MPS_H
 #define MPS_H
  *              and all things have a fixed column... :-0
  * s_mps_free:  mps where whitespace is a seperator :-)
  */
-typedef enum _style_t {s_mps_fixed, s_mps_free} style_t;
+typedef enum {s_mps_fixed, s_mps_free} lpp_mps_style_t;
 
 /**
  * Writes the description of a lp problem object (lpp)
  * to the stream out, using the specified style.
  */
-void mps_write_mps(lpp_t *lpp, style_t style, FILE *out);
+void mps_write_mps(lpp_t *lpp, lpp_mps_style_t style, FILE *out);
 
 /**
  * Writes the start values of a lp problem object (lpp)
  * to the stream out, using the specified style.
  */
-void mps_write_mst(lpp_t *lpp, style_t style, FILE *out);
+void mps_write_mst(lpp_t *lpp, lpp_mps_style_t style, FILE *out);
 
 #endif