[LLVMbugs] [Bug 359] NEW: Bug in MRegisterInfo::areAliases()

bugzilla-daemon at cs.uiuc.edu bugzilla-daemon at cs.uiuc.edu
Fri Jun 4 07:55:03 PDT 2004


http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=359

           Summary: Bug in MRegisterInfo::areAliases()
           Product: libraries
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Common Code Generator Code
        AssignedTo: unassignedbugs at nondot.org
        ReportedBy: aadasgup at yahoo.com


MRegister::areAliases() always returns false. To correct this, the line in include/llvm/MRegisterInfo.h:
if (*Alias == regA) return true;
should be changed to:
if (*Alias == regB) return true;



------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.




More information about the llvm-bugs mailing list