forked from OSchip/llvm-project
[NFC] Whitespace fixes
This commit is contained in:
parent
ee57469a51
commit
b2fb6a7ba1
|
@ -178,8 +178,8 @@ class FunctionArgument<string name, bit opt = 0, bit fake = 0> : Argument<name,
|
|||
opt,
|
||||
fake>;
|
||||
class NamedArgument<string name, bit opt = 0, bit fake = 0> : Argument<name,
|
||||
opt,
|
||||
fake>;
|
||||
opt,
|
||||
fake>;
|
||||
class TypeArgument<string name, bit opt = 0> : Argument<name, opt>;
|
||||
class UnsignedArgument<string name, bit opt = 0> : Argument<name, opt>;
|
||||
class VariadicUnsignedArgument<string name> : Argument<name, 1>;
|
||||
|
|
|
@ -4378,7 +4378,7 @@ below. The explicit attribute annotation indicates that the third parameter
|
|||
(`start_routine`) is called zero or more times by the `pthread_create` function,
|
||||
and that the fourth parameter (`arg`) is passed along. Note that the callback
|
||||
behavior of `pthread_create` is automatically recognized by Clang. In addition,
|
||||
the declarations of `__kmpc_fork_teams` and `__kmpc_fork_call`, generated for
|
||||
the declarations of `__kmpc_fork_teams` and `__kmpc_fork_call`, generated for
|
||||
`#pragma omp target teams` and `#pragma omp parallel`, respectively, are also
|
||||
automatically recognized as broker functions. Further functions might be added
|
||||
in the future.
|
||||
|
|
Loading…
Reference in New Issue