summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaCXX/atomic-ops.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [Sema] Fix PR28623.George Burgess IV2016-07-211-0/+9
In atomic builtins, we assumed that the LValue conversion on the first argument would succeed. So, we would crash given code like: ``` void ovl(char); void ovl(int); __atomic_store_n(ovl, 0, 0); ``` This patch makes us not assume that said conversion is successful. :) llvm-svn: 276232
OpenPOWER on IntegriCloud