Adrian Prantl
bc068586ac
Revert "Revert r241620 and follow-up commits" and move the initialization
...
of the llvm targets from clang/CodeGen into ClangCheck.cpp and CIndex.cpp.
llvm-svn: 241653
2015-07-08 01:00:30 +00:00
Adrian Prantl
142ec39739
Revert r241620 and follow-up commits while investigating linux buildbot failures.
...
llvm-svn: 241642
2015-07-07 23:19:46 +00:00
Adrian Prantl
726855a8da
Update testcases that use precompiled headers to require a target after
...
r241620.
llvm-svn: 241623
2015-07-07 20:31:18 +00:00
Alexey Bataev
81c7ea0ec3
[OPENMP 4.0] Fixed codegen for 'cancellation point' construct.
...
Generate the next code for 'cancellation point':
if (__kmpc_cancellationpoint()) {
__kmpc_cancel_barrier();
<exit construct>;
}
llvm-svn: 241336
2015-07-03 09:56:58 +00:00
Alexey Bataev
bb045d412f
[OPENMP 4.0] Fixed test for 'cancellation point' directive.
...
Added explicit target to pch test
llvm-svn: 241240
2015-07-02 04:36:13 +00:00
Alexey Bataev
0f34da12e4
[OPENMP 4.0] Codegen for 'cancellation point' directive.
...
The next code is generated for this construct:
```
if (__kmpc_cancellationpoint(ident_t *loc, kmp_int32 global_tid, kmp_int32 cncl_kind) != 0)
<exit from outer innermost construct>;
```
llvm-svn: 241239
2015-07-02 04:17:07 +00:00