/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/lit-tests/alloca_error.ispc
15 строк
451 B
DeepakRajendrakumaran
Fixes #294: Adding alloca() implementation. (#2045)
07 апр 2021, 23:42
Не верифицирован
07 апр 2021, 23:42
bf959a9
Код
Авторство
О чём код?
// Test to check 'alloca()' implementation. // RUN: not %{ispc} %s --target=host --nowrap 2>&1 | FileCheck %s // REQUIRES: X86_ENABLED // CHECK: 9:12: Error: "alloca()" cannot have an argument of type "varying float". void *uniform foo0(float size) { return alloca(size); } // CHECK: 14:12: Error: "alloca()" cannot have an argument of type "uniform int32 * uniform". void *uniform foo1(uniform int *uniform size) { return alloca(size); }