bader accepted this revision.
bader added inline comments.
================
Comment at: lib/AST/Expr.cpp:4000-4004
+ if (auto AT = T->getAs<AtomicType>()) {
+ return AT->getValueType();
+ } else {
+ return T;
+ }
----------------
No need in else branch after return:
```
if (...) {
return AT->getValueType();
}
return T;
```
http://llvm.org/docs/CodingStandards.html#don-t-use-else-after-a-return
================
Comment at: test/SemaOpenCL/atomic-ops.cl:1
+// RUN: %clang_cc1 %s -cl-std=CL2.0 -finclude-default-header -verify
-fsyntax-only -triple=spir64
+// RUN: %clang_cc1 %s -cl-std=CL2.0 -finclude-default-header -verify
-fsyntax-only -triple=amdgcn-amdhsa-amd-opencl
----------------
It's a pity, we have to parse the whole opencl-c.h file to get two enums and
one typedef...
https://reviews.llvm.org/D28691
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits