Matt Pharr d0674b1706 When doing << or >> operators, don't convert the return type to the type of the shift amount.
Fixes issue #73.  Previously, if we had e.g. an int16 type that was being shifted
left by 1, then the constant integer 1 would come in as an int32, we'd convert
the int16 to an int32, and then we'd do the shift.  Now, for shifts, the type
of the expression is always the same as the type of the value being shifted.
2011-07-25 23:36:05 +01:00
2011-06-21 12:48:50 -07:00
2011-06-21 12:48:50 -07:00
2011-06-21 12:48:50 -07:00
2011-07-17 16:43:05 +02:00
2011-07-17 16:43:05 +02:00
2011-06-21 12:48:50 -07:00
2011-07-25 07:41:37 +01:00
2011-07-23 08:35:45 +01:00
2011-07-25 07:41:37 +01:00
2011-06-21 12:48:50 -07:00
2011-06-21 13:24:25 -07:00
2011-07-08 16:45:03 +01:00
2011-06-21 12:48:50 -07:00
2011-06-21 12:48:50 -07:00
2011-07-17 16:43:05 +02:00
2011-07-17 16:43:05 +02:00
2011-06-21 12:48:50 -07:00

==============================
Intel(r) SPMD Program Compiler
==============================

Welcome to the Intel(r) SPMD Program Compiler (ispc)!  

ispc is a new compiler for "single program, multiple data" (SPMD)
programs. Under the SPMD model, the programmer writes a program that mostly
appears to be a regular serial program, though the execution model is
actually that a number of program instances execute in parallel on the
hardware. ispc compiles a C-based SPMD programming language to run on the
SIMD units of CPUs; it frequently provides a a 3x or more speedup on CPUs
with 4-wide SSE units, without any of the difficulty of writing intrinsics
code.

ispc is an open source compiler under the BSD license; see the file
LICENSE.txt.  ispc supports Windows, Mac, and Linux, with both x86 and
x86-64 targets. It currently supports the SSE2 and SSE4 instruction sets,
though support for AVX should be available soon.

For more information and examples, as well as a wiki and the bug database,
see the ispc distribution site, http://ispc.github.com.
Description
No description provided
Readme 34 MiB
Languages
C++ 63.5%
LLVM 19.1%
M4 11.6%
Python 4.5%
Makefile 0.5%
Other 0.6%