File: regalloc.h

package info (click to toggle)
faucc 20160511-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,460 kB
  • ctags: 2,914
  • sloc: ansic: 38,788; yacc: 1,602; xml: 519; sh: 436; lex: 378; makefile: 125
file content (21 lines) | stat: -rw-r--r-- 573 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * $Id: regalloc.h,v 1.1 2012/02/23 15:45:12 vrsieh Exp $ 
 *
 * Copyright (C) 2007-2012 FAUcc Team <info@faumachine.org>.
 * This program is free software. You can redistribute it and/or modify it
 * under the terms of the GNU General Public License, either version 2 of
 * the License, or (at your option) any later version. See COPYING.
 */

#ifndef __REGALLOC_H_INCLUDED
#define __REGALLOC_H_INCLUDED

extern void
regalloc(
	struct storage_register *reginfo,
	unsigned int *classinfo,
	unsigned int *typeinfo,
	struct stmt *fs
);

#endif /* __REGALLOC_H_INCLUDED */