mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvm-project main llvmorg-18-init-15088-gd14ee76181fb.
PR: 276104
MFC after: 1 month
(cherry picked from commit 5f757f3ff9)
13 lines
378 B
C
13 lines
378 B
C
#ifndef LLVM_TOOLS_LLVM_OBJDUMP_OBJDUMP_OPT_ID_H
|
|
#define LLVM_TOOLS_LLVM_OBJDUMP_OBJDUMP_OPT_ID_H
|
|
|
|
#include "llvm/Option/OptTable.h"
|
|
|
|
enum ObjdumpOptID {
|
|
OBJDUMP_INVALID = 0, // This is not an option ID.
|
|
#define OPTION(...) LLVM_MAKE_OPT_ID_WITH_ID_PREFIX(OBJDUMP_, __VA_ARGS__),
|
|
#include "ObjdumpOpts.inc"
|
|
#undef OPTION
|
|
};
|
|
|
|
#endif // LLVM_TOOLS_LLVM_OBJDUMP_OBJDUMP_OPT_ID_H
|