Skip to content

Commit 0633041

Browse files
jsorefCommit Queue
authored and
Commit Queue
committed
Spelling runtime vm
Closes #50786 TEST=ci GitOrigin-RevId: 781a38e Change-Id: Ia3c615012d1bac3f0cf64dc01c2ceb40d50d1193 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/276684 Reviewed-by: Alexander Markov <[email protected]> Commit-Queue: Martin Kustermann <[email protected]>
1 parent d74965e commit 0633041

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+111
-111
lines changed

runtime/vm/app_snapshot.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7779,7 +7779,7 @@ ZoneGrowableArray<Object*>* Serializer::Serialize(SerializationRoots* roots) {
77797779
// computation. Note that reachability is computed monotonically (an object
77807780
// can change from not reachable to reachable, but never the reverse), which
77817781
// is technically a conservative approximation for WSRs, but doing a strict
7782-
// analysis that allows non-motonoic reachability may not halt.
7782+
// analysis that allows non-monotonic reachability may not halt.
77837783
//
77847784
// To see this, take a WSR whose replacement causes the target of another WSR
77857785
// to become reachable, which then causes the target of the first WSR to
@@ -8029,7 +8029,7 @@ void Serializer::WriteDispatchTable(const Array& entries) {
80298029
}
80308030
continue;
80318031
}
8032-
// Emit any outsanding repeat count before handling the new code value.
8032+
// Emit any outstanding repeat count before handling the new code value.
80338033
if (repeat_count > 0) {
80348034
Write(repeat_count);
80358035
repeat_count = 0;

runtime/vm/class_table.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class PersistentHandle;
3939
// There is a bit for each word in an instance of the class.
4040
//
4141
// Words corresponding to set bits must be ignored by the GC because they
42-
// don't contain pointers. All words beyound the first 64 words of an object
42+
// don't contain pointers. All words beyond the first 64 words of an object
4343
// are expected to contain pointers.
4444
class UnboxedFieldBitmap {
4545
public:
@@ -147,7 +147,7 @@ class ClassTableAllocator : public ValueObject {
147147

148148
// A table with the given |Columns| indexed by class id.
149149
//
150-
// Each column is a continous array of a the given type. All columns have
150+
// Each column is a continuous array of a the given type. All columns have
151151
// the same number of used elements (|num_cids()|) and the same capacity.
152152
template <typename CidType, typename... Columns>
153153
class CidIndexedTable {

runtime/vm/dart_api_impl_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class InfiniteLoopTask : public ThreadPool::Task {
172172
ml.Notify();
173173
}
174174
Dart_Handle result = Dart_Invoke(lib, NewString("testMain"), 0, NULL);
175-
// Test should run an inifinite loop and expect that to be killed.
175+
// Test should run an infinite loop and expect that to be killed.
176176
EXPECT(Dart_IsError(result));
177177
EXPECT_STREQ("isolate terminated by Isolate.kill", Dart_GetError(result));
178178
{
@@ -590,7 +590,7 @@ static Dart_NativeFunction CurrentStackTraceNativeLookup(
590590

591591
TEST_CASE(DartAPI_CurrentStackTraceInfo) {
592592
const char* kScriptChars = R"(
593-
@pragma("vm:external-name", "CurrentStackTraceNatve")
593+
@pragma("vm:external-name", "CurrentStackTraceNative")
594594
external inspectStack();
595595
foo(n) => n == 1 ? inspectStack() : foo(n-1);
596596
testMain() => foo(100);

runtime/vm/datastream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ class NonStreamingWriteStream : public BaseWriteStream {
619619
};
620620

621621
// A non-streaming write stream that uses realloc for reallocation, and frees
622-
// the buffer when destructed unless ownership is transfered using Steal().
622+
// the buffer when destructed unless ownership is transferred using Steal().
623623
class MallocWriteStream : public NonStreamingWriteStream {
624624
public:
625625
explicit MallocWriteStream(intptr_t initial_size)

runtime/vm/dwarf.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ void Dwarf::WriteLineNumberProgram(DwarfWriteStream* stream) {
876876
stream->u1(0); // DW_LNS_const_add_pc, 0 operands
877877
stream->u1(1); // DW_LNS_fixed_advance_pc, 1 operands
878878
stream->u1(0); // DW_LNS_set_prolog_end, 0 operands
879-
stream->u1(0); // DW_LNS_set_epligoue_begin, 0 operands
879+
stream->u1(0); // DW_LNS_set_epilogue_begin, 0 operands
880880
stream->u1(1); // DW_LNS_set_isa, 1 operands
881881

882882
// 10. include_directories (sequence of path names)

runtime/vm/dwarf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ struct DwarfCodeKeyValueTrait {
9898
}
9999
Pair() : code(nullptr), value{} {}
100100

101-
// Don't implcitly delete copy and copy assigment constructors.
101+
// Don't implicitly delete copy and copy assigment constructors.
102102
Pair(const Pair& other) = default;
103103
Pair& operator=(const Pair& other) = default;
104104

runtime/vm/elf.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1565,7 +1565,7 @@ ProgramTable* SectionTable::CreateProgramTable(SymbolTable* symtab) {
15651565
// table to initialize that segment.
15661566
//
15671567
// - The Android dynamic linker in Jelly Bean incorrectly assumes that all
1568-
// non-writable segments are continguous. Thus we write them all together.
1568+
// non-writable segments are contiguous. Thus we write them all together.
15691569
// The bug is here: https://github.com/aosp-mirror/platform_bionic/blob/94963af28e445384e19775a838a29e6a71708179/linker/linker.c#L1991-L2001
15701570
//
15711571
// - On Android native libraries can be mapped directly from an APK

runtime/vm/field_table.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void FieldTable::MarkReadyToUse() {
3535
// in new static field registrations.
3636
//
3737
// By requiring a read lock here we ensure no other thread is is registering a
38-
// new static field at this moment (it would need exlusive writer lock).
38+
// new static field at this moment (it would need exclusive writer lock).
3939
DEBUG_ASSERT(
4040
IsolateGroup::Current()->program_lock()->IsCurrentThreadReader());
4141
ASSERT(!is_ready_to_use_);

runtime/vm/flag_list.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ constexpr bool FLAG_support_il_printer = false;
253253
"Eliminate type checks when allowed by static type analysis.") \
254254
D(support_rr, bool, false, "Support running within RR.") \
255255
P(verify_entry_points, bool, false, \
256-
"Throw API error on invalid member access throuh native API. See " \
256+
"Throw API error on invalid member access through native API. See " \
257257
"entry_point_pragma.md") \
258258
P(sound_null_safety, bool, true, \
259259
"Respect the nullability of types at runtime.") \

runtime/vm/heap/become_test.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ void TestBecomeForward(Heap::Space before_space, Heap::Space after_space) {
3434
EXPECT(container.At(0) == after_obj.ptr());
3535
}
3636

37-
ISOLATE_UNIT_TEST_CASE(BecomeFowardOldToOld) {
37+
ISOLATE_UNIT_TEST_CASE(BecomeForwardOldToOld) {
3838
TestBecomeForward(Heap::kOld, Heap::kOld);
3939
}
4040

41-
ISOLATE_UNIT_TEST_CASE(BecomeFowardNewToNew) {
41+
ISOLATE_UNIT_TEST_CASE(BecomeForwardNewToNew) {
4242
TestBecomeForward(Heap::kNew, Heap::kNew);
4343
}
4444

45-
ISOLATE_UNIT_TEST_CASE(BecomeFowardOldToNew) {
45+
ISOLATE_UNIT_TEST_CASE(BecomeForwardOldToNew) {
4646
TestBecomeForward(Heap::kOld, Heap::kNew);
4747
}
4848

49-
ISOLATE_UNIT_TEST_CASE(BecomeFowardNewToOld) {
49+
ISOLATE_UNIT_TEST_CASE(BecomeForwardNewToOld) {
5050
TestBecomeForward(Heap::kNew, Heap::kOld);
5151
}
5252

runtime/vm/heap/compactor.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ DEFINE_FLAG(bool,
2424
// kAllocatablePageSize - 2 * kObjectAlignment bytes belong to the same block).
2525
// During compaction, all live objects in the same block will slide such that
2626
// they all end up on the same Page, and all gaps within the block will be
27-
// closed. During sliding, a bitvector is computed that indictates which
27+
// closed. During sliding, a bitvector is computed that indicates which
2828
// allocation units are live, so the new address of any object in the block can
2929
// be found by adding the number of live allocation units before the object to
3030
// the block's new start address.

runtime/vm/heap/pointer_block.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class BlockStack {
9393
static void Init();
9494
static void Cleanup();
9595

96-
// Partially filled blocks can be reused, and there is an "inifite" supply
96+
// Partially filled blocks can be reused, and there is an "infinite" supply
9797
// of empty blocks (reused or newly allocated). In any case, the caller
9898
// takes ownership of the returned block.
9999
Block* PopNonFullBlock();

runtime/vm/heap/scavenger.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1860,7 +1860,7 @@ void Scavenger::ReverseScavenge(SemiSpace** from) {
18601860
// Release any remaining part of the promotion worklist that wasn't completed.
18611861
promotion_stack_.Reset();
18621862

1863-
// Release any remaining part of the rememebred set that wasn't completed.
1863+
// Release any remaining part of the remembered set that wasn't completed.
18641864
StoreBuffer* store_buffer = heap_->isolate_group()->store_buffer();
18651865
StoreBufferBlock* pending = blocks_;
18661866
while (pending != nullptr) {

runtime/vm/image_snapshot.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -672,9 +672,9 @@ const char* ImageWriter::SectionSymbol(ProgramSection section, bool vm) {
672672
// canonicalized and compressed: when building __unwind_info from CFI directives
673673
// LLVM will fold together similar entries, the same does not happen for
674674
// __eh_frame. This means that emitting CFI directives for each function would
675-
// baloon the size of __eh_frame.
675+
// balloon the size of __eh_frame.
676676
//
677-
// Hence to work around the problem of incorrect __unwind_info without balooning
677+
// Hence to work around the problem of incorrect __unwind_info without ballooning
678678
// snapshot size when __eh_frame is generated we choose to emit CFI directives
679679
// per function specifically on ARM64 Mac OS X and iOS.
680680
//

runtime/vm/image_snapshot.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,10 @@ struct ImageWriterCommand {
212212

213213
ImageWriterCommand(intptr_t expected_offset,
214214
uint8_t* trampoline_bytes,
215-
intptr_t trampoine_length)
215+
intptr_t trampoline_length)
216216
: expected_offset(expected_offset),
217217
op(ImageWriterCommand::InsertBytesOfTrampoline),
218-
insert_trampoline_bytes({trampoline_bytes, trampoine_length}) {}
218+
insert_trampoline_bytes({trampoline_bytes, trampoline_length}) {}
219219

220220
// The offset (relative to the very first [ImageWriterCommand]) we expect
221221
// this [ImageWriterCommand] to have.

runtime/vm/instructions_arm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class InstructionPattern : public AllStatic {
5151
// address of the first instruction in the sequence. Returns the register
5252
// being loaded and the index in the pool being read from in the output
5353
// parameters 'reg' and 'index' respectively.
54-
// IMPORANT: When generating code loading values from pool on ARM use
54+
// IMPORTANT: When generating code loading values from pool on ARM use
5555
// LoadWordFromPool macro instruction instead of emitting direct load.
5656
// The macro instruction takes care of pool offsets that can't be
5757
// encoded as immediates.

runtime/vm/instructions_arm64.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class InstructionPattern : public AllStatic {
4242
// address of the first instruction in the sequence. Returns the register
4343
// being loaded and the index in the pool being read from in the output
4444
// parameters 'reg' and 'index' respectively.
45-
// IMPORANT: When generating code loading values from pool on ARM64 use
45+
// IMPORTANT: When generating code loading values from pool on ARM64 use
4646
// LoadWordFromPool macro instruction instead of emitting direct load.
4747
// The macro instruction takes care of pool offsets that can't be
4848
// encoded as immediates.
@@ -55,7 +55,7 @@ class InstructionPattern : public AllStatic {
5555
// address of the first instruction in the sequence. Returns the registers
5656
// being loaded and the index in the pool being read from in the output
5757
// parameters 'reg1', 'reg2' and 'index' respectively.
58-
// IMPORANT: When generating code loading values from pool on ARM64 use
58+
// IMPORTANT: When generating code loading values from pool on ARM64 use
5959
// LoadDoubleWordFromPool macro instruction instead of emitting direct load.
6060
// The macro instruction takes care of pool offsets that can't be
6161
// encoded as immediates.

runtime/vm/instructions_riscv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class InstructionPattern : public AllStatic {
4242
// address of the first instruction in the sequence. Returns the register
4343
// being loaded and the index in the pool being read from in the output
4444
// parameters 'reg' and 'index' respectively.
45-
// IMPORANT: When generating code loading values from pool on ARM64 use
45+
// IMPORTANT: When generating code loading values from pool on ARM64 use
4646
// LoadWordFromPool macro instruction instead of emitting direct load.
4747
// The macro instruction takes care of pool offsets that can't be
4848
// encoded as immediates.

runtime/vm/isolate.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ void IsolateGroup::Shutdown() {
516516
while (old_space->tasks() > 0) {
517517
ml.Wait();
518518
}
519-
// Needs to happen before ~PageSpace so TLS and the thread registery are
519+
// Needs to happen before ~PageSpace so TLS and the thread registry are
520520
// still valid.
521521
old_space->AbandonMarkingForShutdown();
522522
}
@@ -748,7 +748,7 @@ void IsolateGroup::IncreaseMutatorCount(Isolate* mutator,
748748
{
749749
// NOTE: This is performance critical code, we should avoid monitors and use
750750
// std::atomics in the fast case (where active_mutators <
751-
// max_active_mutators) and only use montiors in the uncommon case.
751+
// max_active_mutators) and only use monitors in the uncommon case.
752752
MonitorLocker ml(active_mutators_monitor_.get());
753753
ASSERT(active_mutators_ <= max_active_mutators_);
754754
while (active_mutators_ == max_active_mutators_) {
@@ -774,7 +774,7 @@ void IsolateGroup::DecreaseMutatorCount(Isolate* mutator, bool is_nested_exit) {
774774
{
775775
// NOTE: This is performance critical code, we should avoid monitors and use
776776
// std::atomics in the fast case (where active_mutators <
777-
// max_active_mutators) and only use montiors in the uncommon case.
777+
// max_active_mutators) and only use monitors in the uncommon case.
778778
MonitorLocker ml(active_mutators_monitor_.get());
779779
ASSERT(active_mutators_ <= max_active_mutators_);
780780
active_mutators_--;

runtime/vm/isolate_reload.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ InstanceMorpher* InstanceMorpher::CreateFromClassDescriptors(
199199
mapping->Add({from_field.HostOffset(), from_box_cid});
200200
mapping->Add({to_field.HostOffset(), to_box_cid});
201201

202-
// Field did exist in old class deifnition.
202+
// Field did exist in old class definition.
203203
new_field = false;
204204
break;
205205
}

runtime/vm/isolate_reload_test.cc

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2111,20 +2111,20 @@ TEST_CASE(IsolateReload_EnumAddition) {
21112111
const char* kReloadScript =
21122112
"enum Fruit {\n"
21132113
" Apple,\n"
2114-
" Cantalope,\n"
2114+
" Cantaloupe,\n"
21152115
" Banana,\n"
21162116
"}\n"
21172117
"var x;\n"
21182118
"main() {\n"
21192119
" String r = '${Fruit.Apple.index}/${Fruit.Apple} ';\n"
2120-
" r += '${Fruit.Cantalope.index}/${Fruit.Cantalope} ';\n"
2120+
" r += '${Fruit.Cantaloupe.index}/${Fruit.Cantaloupe} ';\n"
21212121
" r += '${Fruit.Banana.index}/${Fruit.Banana}';\n"
21222122
" return r;\n"
21232123
"}\n";
21242124

21252125
lib = TestCase::ReloadTestScript(kReloadScript);
21262126
EXPECT_VALID(lib);
2127-
EXPECT_STREQ("0/Fruit.Apple 1/Fruit.Cantalope 2/Fruit.Banana",
2127+
EXPECT_STREQ("0/Fruit.Apple 1/Fruit.Cantaloupe 2/Fruit.Banana",
21282128
SimpleInvokeStr(lib, "main"));
21292129
}
21302130

@@ -2183,19 +2183,19 @@ TEST_CASE(IsolateReload_EnumDelete) {
21832183
"enum Fruit {\n"
21842184
" Apple,\n"
21852185
" Banana,\n"
2186-
" Cantalope,\n"
2186+
" Cantaloupe,\n"
21872187
"}\n"
21882188
"var x;\n"
21892189
"main() {\n"
2190-
" x = Fruit.Cantalope;\n"
2190+
" x = Fruit.Cantaloupe;\n"
21912191
" return Fruit.Apple.toString();\n"
21922192
"}\n";
21932193

21942194
Dart_Handle lib = TestCase::LoadTestScript(kScript, NULL);
21952195
EXPECT_VALID(lib);
21962196
EXPECT_STREQ("Fruit.Apple", SimpleInvokeStr(lib, "main"));
21972197

2198-
// Delete 'Cantalope' but make sure that we can still invoke toString,
2198+
// Delete 'Cantaloupe' but make sure that we can still invoke toString,
21992199
// and access the hashCode and index properties.
22002200

22012201
const char* kReloadScript =
@@ -2220,7 +2220,7 @@ TEST_CASE(IsolateReload_EnumIdentityReload) {
22202220
"enum Fruit {\n"
22212221
" Apple,\n"
22222222
" Banana,\n"
2223-
" Cantalope,\n"
2223+
" Cantaloupe,\n"
22242224
"}\n"
22252225
"var x;\n"
22262226
"var y;\n"
@@ -2229,10 +2229,10 @@ TEST_CASE(IsolateReload_EnumIdentityReload) {
22292229
"main() {\n"
22302230
" x = { Fruit.Apple: Fruit.Apple.index,\n"
22312231
" Fruit.Banana: Fruit.Banana.index,\n"
2232-
" Fruit.Cantalope: Fruit.Cantalope.index};\n"
2232+
" Fruit.Cantaloupe: Fruit.Cantaloupe.index};\n"
22332233
" y = Fruit.Apple;\n"
22342234
" z = Fruit.Banana;\n"
2235-
" w = Fruit.Cantalope;\n"
2235+
" w = Fruit.Cantaloupe;\n"
22362236
" return Fruit.Apple.toString();\n"
22372237
"}\n";
22382238

@@ -2244,7 +2244,7 @@ TEST_CASE(IsolateReload_EnumIdentityReload) {
22442244
"enum Fruit {\n"
22452245
" Apple,\n"
22462246
" Banana,\n"
2247-
" Cantalope,\n"
2247+
" Cantaloupe,\n"
22482248
"}\n"
22492249
"var x;\n"
22502250
"var y;\n"
@@ -2260,10 +2260,10 @@ TEST_CASE(IsolateReload_EnumIdentityReload) {
22602260
" });\n"
22612261
" r += '${x[Fruit.Apple] == Fruit.Apple.index} ';\n"
22622262
" r += '${x[Fruit.Banana] == Fruit.Banana.index} ';\n"
2263-
" r += '${x[Fruit.Cantalope] == Fruit.Cantalope.index} ';\n"
2263+
" r += '${x[Fruit.Cantaloupe] == Fruit.Cantaloupe.index} ';\n"
22642264
" r += '${identical(y, Fruit.values[x[Fruit.Apple]])} ';\n"
22652265
" r += '${identical(z, Fruit.values[x[Fruit.Banana]])} ';\n"
2266-
" r += '${identical(w, Fruit.values[x[Fruit.Cantalope]])} ';\n"
2266+
" r += '${identical(w, Fruit.values[x[Fruit.Cantaloupe]])} ';\n"
22672267
" return r;\n"
22682268
"}\n";
22692269

@@ -2329,28 +2329,28 @@ TEST_CASE(IsolateReload_EnumValuesToString) {
23292329
EXPECT_VALID(lib);
23302330
EXPECT_STREQ("Fruit.Apple Fruit.Banana", SimpleInvokeStr(lib, "main"));
23312331

2332-
// Insert 'Cantalope'.
2332+
// Insert 'Cantaloupe'.
23332333

23342334
const char* kReloadScript =
23352335
"enum Fruit {\n"
23362336
" Apple,\n"
2337-
" Cantalope,\n"
2337+
" Cantaloupe,\n"
23382338
" Banana\n"
23392339
"}\n"
23402340
"var x;\n"
23412341
"main() {\n"
23422342
" String r = '';\n"
23432343
" r += Fruit.Apple.toString();\n"
23442344
" r += ' ';\n"
2345-
" r += Fruit.Cantalope.toString();\n"
2345+
" r += Fruit.Cantaloupe.toString();\n"
23462346
" r += ' ';\n"
23472347
" r += Fruit.Banana.toString();\n"
23482348
" return r;\n"
23492349
"}\n";
23502350

23512351
lib = TestCase::ReloadTestScript(kReloadScript);
23522352
EXPECT_VALID(lib);
2353-
EXPECT_STREQ("Fruit.Apple Fruit.Cantalope Fruit.Banana",
2353+
EXPECT_STREQ("Fruit.Apple Fruit.Cantaloupe Fruit.Banana",
23542354
SimpleInvokeStr(lib, "main"));
23552355
}
23562356

@@ -2974,7 +2974,7 @@ TEST_CASE(IsolateReload_ShapeChange_Const_AddSlot) {
29742974
// change, they are allocated old. Because instructions normally contain
29752975
// pointers only to old objects, the scavenger does not bother to ensure code
29762976
// pages are writable when visiting the remembered set. Visiting the
2977-
// remembered involes writing to update the pointer for any target that gets
2977+
// remembered involves writing to update the pointer for any target that gets
29782978
// promoted.
29792979
const char* kScript = R"(
29802980
import 'file:///test:isolate_reload_helper';

runtime/vm/libfuzzer/dart_libfuzzer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ extern "C" int LLVMFuzzerInitialize(int* argc_in, char*** argv_in) {
8181

8282
// Libfuzzer target functions:
8383
// 0 : unicode
84-
// 1 : utilies
84+
// 1 : utilities
8585
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
8686
switch (target) {
8787
case 0:

0 commit comments

Comments
 (0)