From ff76c2334ee9ab21df413ca6777bf6d8342a3045 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Fri, 24 Jun 2011 16:19:51 -0700 Subject: [PATCH] small doc fix, removed incorrect comment from example --- docs/ispc.txt | 2 +- examples/options/options.cpp | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/ispc.txt b/docs/ispc.txt index 8292f478..60d0b207 100644 --- a/docs/ispc.txt +++ b/docs/ispc.txt @@ -136,7 +136,7 @@ Linux\* and Mac OS\* available for download. Alternatively, you can download the source code from that page and build it yourself; see see the `ispc wiki`_ for instructions about building ``ispc`` from source. -.. _ispc downloads web page:downloads.html +.. _ispc downloads web page: downloads.html .. _ispc wiki: http://github.com/ispc/ispc/wiki Once you have an executable for your system, copy it into a directory diff --git a/examples/options/options.cpp b/examples/options/options.cpp index 86c55dae..5fe48f86 100644 --- a/examples/options/options.cpp +++ b/examples/options/options.cpp @@ -54,8 +54,6 @@ extern void binomial_put_serial(float Sa[], float Xa[], float Ta[], float result[], int count); int main() { - // Pointers passed to ispc code must have alignment of the target's - // vector width at minimum. float *S = new float[N_OPTIONS]; float *X = new float[N_OPTIONS]; float *T = new float[N_OPTIONS];