mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
tidy up
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -768,7 +768,7 @@ TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) {
|
||||
/// references from the register file information, for example.
|
||||
///
|
||||
static std::vector<unsigned char> getImplicitType(Record *R, bool NotRegisters,
|
||||
TreePattern &TP) {
|
||||
TreePattern &TP) {
|
||||
// Some common return values
|
||||
std::vector<unsigned char> Unknown(1, EEVT::isUnknown);
|
||||
std::vector<unsigned char> Other(1, MVT::Other);
|
||||
@@ -845,7 +845,9 @@ bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) {
|
||||
if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) {
|
||||
// If it's a regclass or something else known, include the type.
|
||||
return UpdateNodeType(getImplicitType(DI->getDef(), NotRegisters, TP),TP);
|
||||
} else if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
|
||||
}
|
||||
|
||||
if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) {
|
||||
// Int inits are always integers. :)
|
||||
bool MadeChange = UpdateNodeType(MVT::iAny, TP);
|
||||
|
||||
|
Reference in New Issue
Block a user