diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2018-08-23 17:43:40 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2018-08-23 17:43:40 +0000 |
commit | 075412d9cfc3176626e5d46e7688e0b61086bbff (patch) | |
tree | 7ff0e4d1fe9e1ee8877657545846d586e9a51425 /llvm/lib/IR/DebugInfoMetadata.cpp | |
parent | b801a7d4faa1888b4cbcf39671870f4e025cfbf6 (diff) | |
download | bcm5719-llvm-075412d9cfc3176626e5d46e7688e0b61086bbff.tar.gz bcm5719-llvm-075412d9cfc3176626e5d46e7688e0b61086bbff.zip |
[DEBUGINFO] Fix misprint in the name of DebugDirectivesOnly, NFC.
llvm-svn: 340553
Diffstat (limited to 'llvm/lib/IR/DebugInfoMetadata.cpp')
-rw-r--r-- | llvm/lib/IR/DebugInfoMetadata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/DebugInfoMetadata.cpp b/llvm/lib/IR/DebugInfoMetadata.cpp index 242d92582c2..33bf8edf08a 100644 --- a/llvm/lib/IR/DebugInfoMetadata.cpp +++ b/llvm/lib/IR/DebugInfoMetadata.cpp @@ -491,7 +491,7 @@ const char *DICompileUnit::emissionKindString(DebugEmissionKind EK) { case NoDebug: return "NoDebug"; case FullDebug: return "FullDebug"; case LineTablesOnly: return "LineTablesOnly"; - case DebugDirectivesOnly: return "DebugDirectviesOnly"; + case DebugDirectivesOnly: return "DebugDirectivesOnly"; } return nullptr; } |