<christian@xxxxxxxxxxxxxxx> writes: > My question is this. Is there any simple way to make gcc dump the > inermediate code to files? The code right after optimization has been done > but just before the "actual" backend kicks in. Use the -da option to get more dumps than you probably want to deal with. See the documentation. Note that gcc does not maintain complete separation between code optimization and the backend. Ian