The outputs between the direct ast-dump test and the ast-dump test after deserialization should match modulo a few differences. For hand-written tests, strip the "<undeserialized declarations>"s and the "imported"s with sed. For tests generated with "make-ast-dump-check.sh", regenerate the output. Part 1/n.
22 lines
889 B
Common Lisp
22 lines
889 B
Common Lisp
// Test without serialization:
|
|
// RUN: %clang_cc1 -triple spir64 -cl-std=CL2.0 -ast-dump -ast-dump-filter pipetype %s \
|
|
// RUN: | FileCheck -strict-whitespace %s
|
|
//
|
|
// Test with serialization:
|
|
// RUN: %clang_cc1 -triple spir64 -cl-std=CL2.0 -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -x cl -triple spir64 -cl-std=CL2.0 -include-pch %t -ast-dump-all -ast-dump-filter pipetype /dev/null \
|
|
// RUN: | sed -e "s/ <undeserialized declarations>//" -e "s/ imported//" \
|
|
// RUN: | FileCheck -strict-whitespace %s
|
|
|
|
typedef pipe int pipetype;
|
|
// CHECK: PipeType {{.*}} 'read_only pipe int'
|
|
// CHECK-NEXT: BuiltinType {{.*}} 'int'
|
|
|
|
typedef read_only pipe int pipetype2;
|
|
// CHECK: PipeType {{.*}} 'read_only pipe int'
|
|
// CHECK-NEXT: BuiltinType {{.*}} 'int'
|
|
|
|
typedef write_only pipe int pipetype3;
|
|
// CHECK: PipeType {{.*}} 'write_only pipe int'
|
|
// CHECK-NEXT: BuiltinType {{.*}} 'int'
|