[LLVMbugs] [Bug 10283] New: Spell checking triggers "correction has not been looked up" assertion

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Wed Jul 6 06:16:57 PDT 2011


http://llvm.org/bugs/show_bug.cgi?id=10283

           Summary: Spell checking triggers "correction has not been
                    looked up" assertion
           Product: clang
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
        AssignedTo: unassignedclangbugs at nondot.org
        ReportedBy: hans at chromium.org
                CC: llvmbugs at cs.uiuc.edu


Spell checking triggers "correction has not been looked up" assertion when a
typo result is an overloaded function, e.g. for code such as this:

void sin(int);
void sin(void);

void f() {
  min(5);
}

or 

template<typename T> void sin();
void f() {
  min();
}

This seems to have regressed when namespace-aware typo checking was landed in
r134007.

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the llvm-bugs mailing list