diff options
author | Cyndy Ishida <cyndy_ishida@apple.com> | 2024-02-12 16:15:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 16:15:21 -0800 |
commit | 3a080a0195ed21b8e12f825cfa00c8fa79f851a6 (patch) | |
tree | fd9e62afbb90a83982c0e89f0887374a16012045 /llvm/lib/TextAPI/TextStubCommon.h | |
parent | 644ac2a018c9bf83c9ba256074e552ad7f1fe941 (diff) | |
download | llvm-3a080a0195ed21b8e12f825cfa00c8fa79f851a6.zip llvm-3a080a0195ed21b8e12f825cfa00c8fa79f851a6.tar.gz llvm-3a080a0195ed21b8e12f825cfa00c8fa79f851a6.tar.bz2 |
[TextAPI] Refactor BinaryAttrs to InterfaceFile assignment (#81551)
Create a helper method for this operation, so it can be reused in
multiple places.
Additonally move FileType enum into its own header to avoid include
cycles.
Diffstat (limited to 'llvm/lib/TextAPI/TextStubCommon.h')
-rw-r--r-- | llvm/lib/TextAPI/TextStubCommon.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/TextAPI/TextStubCommon.h b/llvm/lib/TextAPI/TextStubCommon.h index 360910c..155d38a 100644 --- a/llvm/lib/TextAPI/TextStubCommon.h +++ b/llvm/lib/TextAPI/TextStubCommon.h @@ -13,6 +13,7 @@ #ifndef LLVM_TEXTAPI_TEXT_STUB_COMMON_H #define LLVM_TEXTAPI_TEXT_STUB_COMMON_H +#include "llvm/ADT/BitmaskEnum.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/YAMLTraits.h" #include "llvm/TextAPI/Architecture.h" |