aboutsummaryrefslogtreecommitdiff
path: root/include/clang/CodeGen/BackendUtil.h
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-07-27 22:37:14 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-07-27 22:37:14 +0000
commita6d6af308bfc9b72467b432a045a9fc6673e3821 (patch)
tree79b6e5400e07ebd01988d1fe0f6a228608b95826 /include/clang/CodeGen/BackendUtil.h
parentee94e2d10728d1b6a87a11aeee122e8759f58c63 (diff)
Revert r109546, it broke linux build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/CodeGen/BackendUtil.h')
-rw-r--r--include/clang/CodeGen/BackendUtil.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/clang/CodeGen/BackendUtil.h b/include/clang/CodeGen/BackendUtil.h
index 193a0fb4d9..abcef8130d 100644
--- a/include/clang/CodeGen/BackendUtil.h
+++ b/include/clang/CodeGen/BackendUtil.h
@@ -19,7 +19,6 @@ namespace clang {
class Diagnostic;
class CodeGenOptions;
class TargetOptions;
- class Decl;
enum BackendAction {
Backend_EmitAssembly, ///< Emit native assembly files
@@ -33,14 +32,6 @@ namespace clang {
void EmitBackendOutput(Diagnostic &Diags, const CodeGenOptions &CGOpts,
const TargetOptions &TOpts, llvm::Module *M,
BackendAction Action, llvm::raw_ostream *OS);
-
- /// \brief Determines if the decl can be CodeGen'ed or deserialized from PCH
- /// lazily, only when used; this is only relevant for function or file scoped
- /// var definitions.
- ///
- /// \returns true if the function/var must be CodeGen'ed/deserialized even if
- /// it is not used.
- bool DeclIsRequiredFunctionOrFileScopedVar(const Decl *D);
}
#endif