mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Improve file comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15069 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
910d0d6066
commit
3b1af0b3fc
@ -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.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user