This is an archive of the discontinued LLVM Phabricator instance.

[FileCheck] Remove FileCheck prefix in API
ClosedPublic

Authored by thopre on Jan 3 2020, 3:05 PM.

Details

Summary

When FileCheck was made a library, types in the public API were renamed
to add a FileCheck prefix, such as Pattern to FileCheckPattern. Many
types were moved into a private interface and thus don't need this
prefix anymore. This commit removes those unneeded prefixes.

Diff Detail

Event Timeline

thopre created this revision.Jan 3 2020, 3:05 PM
jhenderson added inline comments.Jan 6 2020, 1:24 AM
llvm/include/llvm/Support/FileCheck.h
135 ↗(On Diff #236137)

This class isn't strictly part of the private API, since it appears in the public header file. It should probably keep its FileCheck prefix.

thopre updated this revision to Diff 236321.Jan 6 2020, 3:21 AM

Do not rename FileCheckPatternContext

This revision is now accepted and ready to land.Jan 6 2020, 3:23 AM
This revision was automatically updated to reflect the committed changes.