diff options
Diffstat (limited to 'clang/lib/CodeGen/Mangle.h')
-rw-r--r-- | clang/lib/CodeGen/Mangle.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/Mangle.h b/clang/lib/CodeGen/Mangle.h index 627c16a08ef..b3f88b0d687 100644 --- a/clang/lib/CodeGen/Mangle.h +++ b/clang/lib/CodeGen/Mangle.h @@ -25,9 +25,12 @@ namespace llvm { namespace clang { class ASTContext; class NamedDecl; - + class VarDecl; + bool mangleName(const NamedDecl *D, ASTContext &Context, llvm::raw_ostream &os); + void mangleGuardVariable(const VarDecl *D, ASTContext &Context, + llvm::raw_ostream &os); } #endif |