summaryrefslogtreecommitdiffstats
path: root/generic/tclAssembly.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:35:14 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:35:14 (GMT)
commitcd72d108bf14caa354d011a2ce41426ea011da2a (patch)
treeea245cdd3ace1d0ea075a51e59d0b5044fc86bf2 /generic/tclAssembly.c
parentf40df819ae9708d22caccabb9f6a209739449872 (diff)
downloadtcl-cd72d108bf14caa354d011a2ce41426ea011da2a.zip
tcl-cd72d108bf14caa354d011a2ce41426ea011da2a.tar.gz
tcl-cd72d108bf14caa354d011a2ce41426ea011da2a.tar.bz2
Space before tab is an extremely unlikely to be correct indentation pattern
Diffstat (limited to 'generic/tclAssembly.c')
-rw-r--r--generic/tclAssembly.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclAssembly.c b/generic/tclAssembly.c
index 1d09317..7283b0a 100644
--- a/generic/tclAssembly.c
+++ b/generic/tclAssembly.c
@@ -51,7 +51,7 @@ typedef enum BasicBlockCatchState {
BBCS_UNKNOWN = 0, /* Catch context has not yet been identified */
BBCS_NONE, /* Block is outside of any catch */
BBCS_INCATCH, /* Block is within a catch context */
- BBCS_CAUGHT /* Block is within a catch context and
+ BBCS_CAUGHT /* Block is within a catch context and
* may be executed after an exception fires */
} BasicBlockCatchState;
@@ -1930,7 +1930,7 @@ MoveExceptionRangesToBasicBlock(
curr_bb->foreignExceptionBase = savedExceptArrayNext;
curr_bb->foreignExceptionCount = exceptionCount;
curr_bb->foreignExceptions =
- (ExceptionRange*)Tcl_Alloc(exceptionCount * sizeof(ExceptionRange));
+ (ExceptionRange*)Tcl_Alloc(exceptionCount * sizeof(ExceptionRange));
memcpy(curr_bb->foreignExceptions,
envPtr->exceptArrayPtr + savedExceptArrayNext,
exceptionCount * sizeof(ExceptionRange));