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 | 29233c04589d52543af8dbd8825f294314f8a786 (patch) | |
tree | 1779cdb1fbb122d42a7694bc3a4672b4c5172464 /llvm/lib/CodeGen | |
parent | 2c88f8a8c414114da4c44125faf1d16016ef8a99 (diff) | |
download | bcm5719-llvm-29233c04589d52543af8dbd8825f294314f8a786.tar.gz bcm5719-llvm-29233c04589d52543af8dbd8825f294314f8a786.zip |
add a comment line that got dropped
llvm-svn: 100638
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index ec9cfd57d12..df355c1d61c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/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"); |