diff options
author | Benjamin Wu <bwu25@cs.washington.edu> | 2025-07-13 17:25:02 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2025-07-13 17:26:06 +0100 |
commit | 356250630abd876ae592bc3d2b4cc171bc834b79 (patch) | |
tree | 491a06eb93b6b58715f3d145881426a2d3400cc7 /gcc | |
parent | 9b9753718e202073a3343d196a2eae13df80f408 (diff) | |
download | gcc-356250630abd876ae592bc3d2b4cc171bc834b79.zip gcc-356250630abd876ae592bc3d2b4cc171bc834b79.tar.gz gcc-356250630abd876ae592bc3d2b4cc171bc834b79.tar.bz2 |
middle-end: Fix typo in gimple.h
gcc/ChangeLog:
* gimple.h (GTMA_DOES_GO_IRREVOCABLE): Fix typo.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gimple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index 2688846..5c970ce 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -865,7 +865,7 @@ struct GTY((tag("GSS_ASSUME"))) tell the runtime that it should begin the transaction in serial-irrevocable mode. */ #define GTMA_DOES_GO_IRREVOCABLE (1u << 6) -/* The transaction contains no instrumentation code whatsover, most +/* The transaction contains no instrumentation code whatsoever, most likely because it is guaranteed to go irrevocable upon entry. */ #define GTMA_HAS_NO_INSTRUMENTATION (1u << 7) |