@@ -34,11 +34,11 @@ TODO: File Manager Speedup:
3434 3. File UIDs are created on request, not when files are opened.
3535 These changes make it possible to efficiently have FileEntry objects for
3636 files that exist on the file system, but have not been used yet.
37-
37+
3838 Once this is done:
3939 1. DirectoryEntry gets a boolean value "has read entries". When false, not
4040 all entries in the directory are in the file mgr, when true, they are.
41- 2. Instead of stat'ing the file in FileManager::getFile, check to see if
41+ 2. Instead of stat'ing the file in FileManager::getFile, check to see if
4242 the dir has been read. If so, fail immediately, if not, read the dir,
4343 then retry.
4444 3. Reading the dir uses the getdirentries syscall, creating a FileEntry
@@ -55,26 +55,26 @@ The "selection of target" behavior is defined as follows:
5555
5656(1) If the user does not specify -triple, we default to the host triple.
5757(2) If the user specifies a -arch, that overrides the arch in the host or
58- specified triple.
58+ specified triple.
5959
6060//===---------------------------------------------------------------------===//
6161
6262
63- verifyInputConstraint and verifyOutputConstraint should not return bool.
63+ verifyInputConstraint and verifyOutputConstraint should not return bool.
6464
6565Instead we should return something like:
6666
6767enum VerifyConstraintResult {
6868 Valid,
69-
69+
7070 // Output only
7171 OutputOperandConstraintLacksEqualsCharacter,
7272 MatchingConstraintNotValidInOutputOperand,
7373
7474 // Input only
7575 InputOperandConstraintContainsEqualsCharacter,
7676 MatchingConstraintReferencesInvalidOperandNumber,
77-
77+
7878 // Both
7979 PercentConstraintUsedWithLastOperand
8080};
0 commit comments