diff options
author | Chris Bieneman <chris.bieneman@me.com> | 2022-05-02 18:13:07 -0500 |
---|---|---|
committer | Chris Bieneman <chris.bieneman@me.com> | 2022-05-02 18:13:07 -0500 |
commit | 19fb52cbfec7fcb013b9354df4d069a03a7cd3f6 (patch) | |
tree | 677b03c8870136c1bb8d55860324f421eda9d076 /llvm/lib/Object/Binary.cpp | |
parent | deaa678137e52f51ca694fdfd1dc9988360fb69b (diff) | |
download | llvm-19fb52cbfec7fcb013b9354df4d069a03a7cd3f6.zip llvm-19fb52cbfec7fcb013b9354df4d069a03a7cd3f6.tar.gz llvm-19fb52cbfec7fcb013b9354df4d069a03a7cd3f6.tar.bz2 |
[NFC] Add missing switch cases
This silences warnings encountered on some bots.
Diffstat (limited to 'llvm/lib/Object/Binary.cpp')
-rw-r--r-- | llvm/lib/Object/Binary.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Object/Binary.cpp b/llvm/lib/Object/Binary.cpp index 67ed44a..1703f76 100644 --- a/llvm/lib/Object/Binary.cpp +++ b/llvm/lib/Object/Binary.cpp @@ -84,6 +84,7 @@ Expected<std::unique_ptr<Binary>> object::createBinary(MemoryBufferRef Buffer, case file_magic::unknown: case file_magic::cuda_fatbinary: case file_magic::coff_cl_gl_object: + case file_magic::dxcontainer_object: // Unrecognized object file format. return errorCodeToError(object_error::invalid_file_type); case file_magic::minidump: |