diff options
author | Alp Toker <alp@nuanti.com> | 2014-05-11 16:06:11 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-05-11 16:06:11 +0000 |
commit | 1b13dab60860e50dec840a66c67f47a35363a491 (patch) | |
tree | b71469298a63bf0b50be8293b9f4e683279e37f7 /clang/test/SemaOpenCL | |
parent | 4284c6e7a4912c4603ab549065deaaf83ba96791 (diff) | |
download | bcm5719-llvm-1b13dab60860e50dec840a66c67f47a35363a491.tar.gz bcm5719-llvm-1b13dab60860e50dec840a66c67f47a35363a491.zip |
Parameter/argument terminology fixes
llvm-svn: 208499
Diffstat (limited to 'clang/test/SemaOpenCL')
-rw-r--r-- | clang/test/SemaOpenCL/half.cl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaOpenCL/half.cl b/clang/test/SemaOpenCL/half.cl index 0e6acb78c45..11abf64633b 100644 --- a/clang/test/SemaOpenCL/half.cl +++ b/clang/test/SemaOpenCL/half.cl @@ -3,7 +3,7 @@ #pragma OPENCL EXTENSION cl_khr_fp16 : disable half half_disabled(half *p, // expected-error{{declaring function return value of type 'half' is not allowed}} - half h) // expected-error{{declaring function argument of type 'half' is not allowed}} + half h) // expected-error{{declaring function parameter of type 'half' is not allowed}} { half a[2]; // expected-error{{declaring variable of type 'half [2]' is not allowed}} half b; // expected-error{{declaring variable of type 'half' is not allowed}} |