Fix AoS/SoA stdlib functions to match documentation

(i.e. actually remove the old offset parameter stuff now that
we can actually pass pointers.)
This commit is contained in:
Matt Pharr
2011-12-03 22:37:53 -08:00
parent 3efbfc30b7
commit 186d0223d2
12 changed files with 55 additions and 52 deletions

8
tests_errors/shadow.ispc Normal file
View File

@@ -0,0 +1,8 @@
// Symbol "a" shadows symbol declared in outer scope
void foo() {
int a;
{
int a;
}
}