diff options
author | Jim Laskey <jlaskey@mac.com> | 2005-12-21 19:48:16 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2005-12-21 19:48:16 +0000 |
commit | e503289977f3acb5055d03dc2c137eb832397fa7 (patch) | |
tree | a4642223c38c0626a7c58a6065a4eb7b0b59bd77 /lib | |
parent | 9369a5dbc7aa7db27fa5953f16f1bfec0b395869 (diff) |
Start of Dwarf framework.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/DwarfWriter.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp new file mode 100644 index 0000000000..57b1aab2cd --- /dev/null +++ b/lib/CodeGen/DwarfWriter.cpp @@ -0,0 +1,15 @@ +//===-- llvm/CodeGen/DwarfWriter.cpp - Dwarf Framework ----------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by James M. Laskey and is distributed under the +// University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file contains support for writing dwarf debug info into asm files. +// +//===----------------------------------------------------------------------===// + + +#include "llvm/CodeGen/DwarfWriter.h"
\ No newline at end of file |