[llvm] [llvm-objdump] Add preliminary support for decoding binary files (PR #115667)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 12 03:01:32 PST 2024
================
@@ -0,0 +1,42 @@
+//===-- BinaryDump.cpp - raw-binary dumper ----------------------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// This file implements the raw binary dumper for llvm-objdump.
+///
+//===----------------------------------------------------------------------===//
+
+#include "BinaryDump.h"
+
----------------
jh7370 wrote:
Nit: we don't usually have blank lines separating `#include` directives.
https://github.com/llvm/llvm-project/pull/115667
More information about the llvm-commits
mailing list