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 | 1504312d18e5262c6a0a5831d431293367309f86 (patch) | |
tree | d2241e392158751fa4d81176735d9c1effc80b57 /lib/Support | |
parent | 1f79d43e4bf4e29624c784835968099ecd439296 (diff) | |
download | external_llvm-1504312d18e5262c6a0a5831d431293367309f86.zip external_llvm-1504312d18e5262c6a0a5831d431293367309f86.tar.gz external_llvm-1504312d18e5262c6a0a5831d431293367309f86.tar.bz2 |
Fix typo. add a test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Dwarf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Dwarf.cpp b/lib/Support/Dwarf.cpp index 9a6285b..c19c2d6 100644 --- a/lib/Support/Dwarf.cpp +++ b/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; } |