Changeset View
Changeset View
Standalone View
Standalone View
clang/lib/Sema/SemaDeclAttr.cpp
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
Show First 20 Lines • Show All 8,628 Lines • ▼ Show 20 Lines | else | ||||
handleNonNullAttr(S, D, AL); | handleNonNullAttr(S, D, AL); | ||||
break; | break; | ||||
case ParsedAttr::AT_ReturnsNonNull: | case ParsedAttr::AT_ReturnsNonNull: | ||||
handleReturnsNonNullAttr(S, D, AL); | handleReturnsNonNullAttr(S, D, AL); | ||||
break; | break; | ||||
case ParsedAttr::AT_NoEscape: | case ParsedAttr::AT_NoEscape: | ||||
handleNoEscapeAttr(S, D, AL); | handleNoEscapeAttr(S, D, AL); | ||||
break; | break; | ||||
case ParsedAttr::AT_MaybeUndef: | |||||
handleSimpleAttribute<MaybeUndefAttr>(S, D, AL); | |||||
break; | |||||
case ParsedAttr::AT_AssumeAligned: | case ParsedAttr::AT_AssumeAligned: | ||||
handleAssumeAlignedAttr(S, D, AL); | handleAssumeAlignedAttr(S, D, AL); | ||||
break; | break; | ||||
case ParsedAttr::AT_AllocAlign: | case ParsedAttr::AT_AllocAlign: | ||||
handleAllocAlignAttr(S, D, AL); | handleAllocAlignAttr(S, D, AL); | ||||
break; | break; | ||||
case ParsedAttr::AT_Ownership: | case ParsedAttr::AT_Ownership: | ||||
handleOwnershipAttr(S, D, AL); | handleOwnershipAttr(S, D, AL); | ||||
▲ Show 20 Lines • Show All 865 Lines • Show Last 20 Lines |