diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-04-07 18:10:38 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-04-07 18:10:38 +0000 |
| commit | 57e9bbdc49243250a494463ece6bce33d6bbc3fb (patch) | |
| tree | c8652a4d2ae1c9cda0a31faf8e09e79739d8dcb5 /lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
| parent | 5843444602466f104d3ce25fe3d0e18c12b2357f (diff) | |
| download | external_llvm-57e9bbdc49243250a494463ece6bce33d6bbc3fb.zip external_llvm-57e9bbdc49243250a494463ece6bce33d6bbc3fb.tar.gz external_llvm-57e9bbdc49243250a494463ece6bce33d6bbc3fb.tar.bz2 | |
add a comment line that got dropped
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100638 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
| -rw-r--r-- | lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index ec9cfd5..df355c1 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1,3 +1,4 @@ +//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===// // // The LLVM Compiler Infrastructure // @@ -44,11 +45,9 @@ #include "llvm/Support/Timer.h" using namespace llvm; -namespace { - const char *DWARFGroupName = "DWARF Emission"; - const char *DbgTimerName = "DWARF Debug Writer"; - const char *EHTimerName = "DWARF Exception Writer"; -} // end anonymous namespace +static const char *DWARFGroupName = "DWARF Emission"; +static const char *DbgTimerName = "DWARF Debug Writer"; +static const char *EHTimerName = "DWARF Exception Writer"; STATISTIC(EmittedInsts, "Number of machine instrs printed"); |
