diff options
author | Devang Patel <dpatel@apple.com> | 2010-04-19 20:31:39 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-04-19 20:31:39 +0000 |
commit | 561fa8490efe6a654f100b7d9a61decf207f04df (patch) | |
tree | 59fc22ae75218811ca1837f1fbcdd8c1253d0f7d /llvm/lib/Support | |
parent | ca7136b9acad697e8bc4979dccda4af726d06590 (diff) | |
download | bcm5719-llvm-561fa8490efe6a654f100b7d9a61decf207f04df.tar.gz bcm5719-llvm-561fa8490efe6a654f100b7d9a61decf207f04df.zip |
Fix typo. add a test case.
llvm-svn: 101812
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Dwarf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Dwarf.cpp b/llvm/lib/Support/Dwarf.cpp index 9a6285b6630..c19c2d6b089 100644 --- a/llvm/lib/Support/Dwarf.cpp +++ b/llvm/lib/Support/Dwarf.cpp @@ -198,7 +198,7 @@ const char *llvm::dwarf::AttributeString(unsigned Attribute) { case DW_AT_APPLE_block: return "DW_AT_APPLE_block"; case DW_AT_APPLE_major_runtime_vers: return "DW_AT_APPLE_major_runtime_vers"; case DW_AT_APPLE_runtime_class: return "DW_AT_APPLE_runtime_class"; - case DW_AT_APPLE_omit_frame_ptr: return "DW_APPLE_omit_frame_ptr"; + case DW_AT_APPLE_omit_frame_ptr: return "DW_AT_APPLE_omit_frame_ptr"; } return 0; } |