[LLVMbugs] [Bug 1511] NEW: Overloading functions by vector type produces silent failure or ICE

bugzilla-daemon at cs.uiuc.edu bugzilla-daemon at cs.uiuc.edu
Fri Jun 15 00:29:15 PDT 2007


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

           Summary: Overloading functions by vector type produces silent
                    failure or ICE
           Product: new-bugs
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: new bugs
        AssignedTo: unassignedbugs at nondot.org
        ReportedBy: christopher.lamb at gmail.com


The following code will either ICE in the FE (my latest FE from CVS) or silently omit the first overloaded 
function (web submission form).

typedef float float2 __attribute__ ((vector_size (8)));
typedef float float4 __attribute__ ((vector_size (16)));

float4 test(float4 a) { return a; }
float2 test(float2 a) { return a; }



------- 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