Clarify the meaning of '-2' register number
llvm-svn: 43998
This commit is contained in:
parent
4edfea438a
commit
0644bb865e
|
|
@ -53,7 +53,8 @@ class Register<string n> {
|
||||||
// These values can be determined by locating the <target>.h file in the
|
// These values can be determined by locating the <target>.h file in the
|
||||||
// directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES. The
|
// directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES. The
|
||||||
// order of these names correspond to the enumeration used by gcc. A value of
|
// order of these names correspond to the enumeration used by gcc. A value of
|
||||||
// -1 indicates that the gcc number is undefined.
|
// -1 indicates that the gcc number is undefined and -2 that register number
|
||||||
|
// is invalid for this mode/flavour.
|
||||||
list<int> DwarfNumbers = [];
|
list<int> DwarfNumbers = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -138,7 +139,8 @@ class DwarfRegNum<list<int> Numbers> {
|
||||||
// These values can be determined by locating the <target>.h file in the
|
// These values can be determined by locating the <target>.h file in the
|
||||||
// directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES. The
|
// directory llvmgcc/gcc/config/<target>/ and looking for REGISTER_NAMES. The
|
||||||
// order of these names correspond to the enumeration used by gcc. A value of
|
// order of these names correspond to the enumeration used by gcc. A value of
|
||||||
// -1 indicates that the gcc number is undefined.
|
// -1 indicates that the gcc number is undefined and -2 that register number is
|
||||||
|
// invalid for this mode/flavour.
|
||||||
list<int> DwarfNumbers = Numbers;
|
list<int> DwarfNumbers = Numbers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue