diff options
author | Fangrui Song <maskray@google.com> | 2018-07-06 19:26:00 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-07-06 19:26:00 +0000 |
commit | 3c1b5dbbf10e5de3b4f6534e607ee7785d953c66 (patch) | |
tree | afdc0be9720246b9b585d738a01bf0895af359bb /llvm/lib/IR/DebugInfoMetadata.cpp | |
parent | f61c631b25c211d5fa487d2e964f7df94a70e61f (diff) | |
download | bcm5719-llvm-3c1b5dbbf10e5de3b4f6534e607ee7785d953c66.tar.gz bcm5719-llvm-3c1b5dbbf10e5de3b4f6534e607ee7785d953c66.zip |
[IR] Fix inconsistent declaration parameter name
llvm-svn: 336459
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 0124980485d..13455ee4805 100644 --- a/llvm/lib/IR/DebugInfoMetadata.cpp +++ b/llvm/lib/IR/DebugInfoMetadata.cpp @@ -475,7 +475,7 @@ DICompileUnit::getEmissionKind(StringRef Str) { .Default(None); } -const char *DICompileUnit::EmissionKindString(DebugEmissionKind EK) { +const char *DICompileUnit::emissionKindString(DebugEmissionKind EK) { switch (EK) { case NoDebug: return "NoDebug"; case FullDebug: return "FullDebug"; |