File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import perf_test_driver # noqa (E402 module level import not at top of file)
26
26
XFAIL_LIST = [
27
27
]
28
28
29
- # Global objective-c classes created by various frameworks. We do not care
29
+ # Global Objective-C classes created by various frameworks. We do not care
30
30
# about these.
31
31
IGNORABLE_GLOBAL_OBJC_CLASSES = set ([
32
32
'__NSPlaceholderDate' ,
Original file line number Diff line number Diff line change @@ -865,7 +865,7 @@ entity discriminators:
865
865
- ``ivarinitializer ``: a class's ivar initializer
866
866
- ``defaultarg. ``\ *n *: the default argument-generating function for
867
867
the *n *\ -th argument of a Swift ``func ``
868
- - ``foreign ``: a specific entry point for C/objective -C interoperability
868
+ - ``foreign ``: a specific entry point for C/Objective -C interoperability
869
869
870
870
Methods and curried function definitions in Swift also have multiple
871
871
"uncurry levels" in SIL, representing the function at each possible
Original file line number Diff line number Diff line change @@ -3245,7 +3245,7 @@ namespace {
3245
3245
addWord (flags);
3246
3246
} else {
3247
3247
// On non-objc platforms just fill it with a null, there
3248
- // is no objective-c metaclass.
3248
+ // is no Objective-C metaclass.
3249
3249
// FIXME: Remove this to save metadata space.
3250
3250
// rdar://problem/18801263
3251
3251
addWord (llvm::ConstantExpr::getNullValue (IGM.IntPtrTy ));
@@ -3375,7 +3375,7 @@ namespace {
3375
3375
3376
3376
void addClassDataPointer () {
3377
3377
if (!IGM.ObjCInterop ) {
3378
- // with no objective-c runtime, just give an empty pointer with the
3378
+ // with no Objective-C runtime, just give an empty pointer with the
3379
3379
// swift bit set.
3380
3380
addWord (llvm::ConstantInt::get (IGM.IntPtrTy , 1 ));
3381
3381
return ;
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ static SILFunction *getDestructor(AllocRefInst *ARI) {
83
83
// If the destructor has an objc_method calling convention, we cannot
84
84
// analyze it since it could be swapped out from under us at runtime.
85
85
if (Fn->getRepresentation () == SILFunctionTypeRepresentation::ObjCMethod) {
86
- DEBUG (llvm::dbgs () << " Found objective-c destructor. Can't "
86
+ DEBUG (llvm::dbgs () << " Found Objective-C destructor. Can't "
87
87
" analyze!\n " );
88
88
return nullptr ;
89
89
}
Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ static void _failCorruptType(const Metadata *type) {
409
409
}
410
410
411
411
#if SWIFT_OBJC_INTEROP
412
- // Objective-c bridging helpers.
412
+ // Objective-C bridging helpers.
413
413
namespace {
414
414
struct _ObjectiveCBridgeableWitnessTable ;
415
415
}
You can’t perform that action at this time.
0 commit comments