Skip to content

Commit

Permalink
Merge pull request #2903 from rainers/issue10224
Browse files Browse the repository at this point in the history
fix Issue 10224:  core.simd ICE cgcv.c line 2162 when compiling with -g
  • Loading branch information
MartinNowak committed Nov 30, 2013
2 parents c64f07b + 1e4aca7 commit 5d0a27e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/backend/cgcv.c
Expand Up @@ -2155,6 +2155,18 @@ unsigned cv4_typidx(type *t)
t = tspvoid;
goto L1;

// vector types
case TYfloat4: size = 16; next = dttab4[TYfloat]; goto Larray;
case TYdouble2: size = 16; next = dttab4[TYdouble]; goto Larray;
case TYschar16: size = 16; next = dttab4[TYschar]; goto Larray;
case TYuchar16: size = 16; next = dttab4[TYuchar]; goto Larray;
case TYshort8: size = 16; next = dttab4[TYshort]; goto Larray;
case TYushort8: size = 16; next = dttab4[TYushort]; goto Larray;
case TYlong4: size = 16; next = dttab4[TYlong]; goto Larray;
case TYulong4: size = 16; next = dttab4[TYulong]; goto Larray;
case TYllong2: size = 16; next = dttab4[TYllong]; goto Larray;
case TYullong2: size = 16; next = dttab4[TYullong]; goto Larray;

default:
#ifdef DEBUG
WRTYxx(tym);
Expand Down

0 comments on commit 5d0a27e

Please sign in to comment.