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

Chris Lattner <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |

--- Comment #4 from Chris Lattner <[email protected]> 2010-03-08 13:29:00 CST 
---
Wow, you're right, it isn't fixed.  Here's a reduced testcase:

typedef union vec3 {
  struct {
    double x, y, z;
  };
  double component[3];
} vec3;

vec3 vec_noise(vec3 value)
{
 return (vec3) {{
  .x = value.x, .y = value.y, .z = value.z,
 }};
}

Thanks for filing this!

-- 
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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to