Improve file comment.

llvm-svn: 15069
This commit is contained in:
Alkis Evlogimenos 2004-07-21 08:28:39 +00:00
parent d524e5bdf2
commit fbc436bbce
1 changed files with 7 additions and 1 deletions

View File

@ -7,7 +7,13 @@
//
//===----------------------------------------------------------------------===//
//
// This file implements a linear scan register allocator.
// This file implements an iterative scan register
// allocator. Iterative scan is a linear scan variant with the
// following difference:
//
// It performs linear scan and keeps a list of the registers it cannot
// allocate. It then spills all those registers and repeats the
// process until allocation succeeds.
//
//===----------------------------------------------------------------------===//