<div class="gmail_extra"><div class="gmail_quote">On Tue, Apr 24, 2012 at 5:38 PM, Roland Leißa <span dir="ltr"><<a href="mailto:leissa@cs.uni-saarland.de" target="_blank">leissa@cs.uni-saarland.de</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
this simple program currently causes a crash:<br>
<br>
typedef bool  bxmm __attribute__ ((vector_size(16)));<br>
typedef float fxmm __attribute__ ((vector_size(16)));<br>
<br>
bxmm f(fxmm a, fxmm b) {<br>
    return a < b;<br>
}<br>
<br>
<br>
The reason for this is, that actually bools are not allowed to be declared as gcc-vectors. (At least gcc does not allow this).<br>
The attached patch fixes this issue by emitting an error message when using bools in gcc-vectors.<br></blockquote><div><br></div><div>Test case as well please.</div></div></div>