File: err-ref-const.ispc

package info (click to toggle)
ispc 1.28.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 97,620 kB
  • sloc: cpp: 77,067; python: 8,303; yacc: 3,337; lex: 1,126; ansic: 631; sh: 475; makefile: 17
file content (35 lines) | stat: -rw-r--r-- 688 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// RUN: not %{ispc} --target=host --nowrap --nostdlib %s -o - 2>&1 | FileCheck %s

// CHECK: Error: Can't assign to type "const varying int32" on left-hand side of expression

const int x[20];

void foo1() {
    ++x[5];
}

// CHECK: Error: Can't assign to type "const varying int16" on left-hand side of expression

struct Foo1 {
    int16 x;
};

void f(const Foo1 &f) {
    f.x += 2;
}

// CHECK: Error: Can't assign to type "const varying int8" on left-hand side of expression

struct Foo2 {
    int8 y;
};

void f(const Foo2 &f) {
    ++f.y;
}

// CHECK: Error: Can't assign to type "const uniform int64" on left-hand side of expression

void foo(const uniform int64 &x) {
    x = 0;
}