diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2021-06-09 14:48:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-06-09 14:48:29 -0700 |
commit | a4c30b8691f26c6115db6e11ec837c1fb6073953 (patch) | |
tree | 8f28a64a7df604d33cc0fe6570e9dcb9af8e415c /include/linux | |
parent | a25b088c4ffae97033483064ee4a1075a049bc04 (diff) | |
parent | ca0760e7d79e2bb9c342e6b3f925b1ef01c6303e (diff) |
Merge tag 'compiler-attributes-for-linus-v5.13-rc6' of git://github.com/ojeda/linux
Pull compiler attribute update from Miguel Ojeda:
"A trivial update to the compiler attributes: Add 'continue' keyword to
documentation in comment (from Wei Ming Chen)"
* tag 'compiler-attributes-for-linus-v5.13-rc6' of git://github.com/ojeda/linux:
Compiler Attributes: Add continue in comment
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/compiler_attributes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/compiler_attributes.h b/include/linux/compiler_attributes.h index c043b8d2b17b..183ddd5fd072 100644 --- a/include/linux/compiler_attributes.h +++ b/include/linux/compiler_attributes.h @@ -199,6 +199,7 @@ * must end with any of these keywords: * break; * fallthrough; + * continue; * goto <label>; * return [expression]; * |