diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-05-16 23:49:20 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-05-16 23:49:20 +0000 |
commit | c249c411c26d0f70385231555d41a4388377d040 (patch) | |
tree | 4297281e4a8e1a8e025287af89442de3396ec76e /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 2ccfe89b3ebd555f900f020d4cfd4b52ba104317 (diff) | |
download | bcm5719-llvm-c249c411c26d0f70385231555d41a4388377d040.tar.gz bcm5719-llvm-c249c411c26d0f70385231555d41a4388377d040.zip |
Fix crash on C++ code when compiling with -finstrument-functions.
llvm-svn: 131435
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 282b5e7eb5c..28a4fa4baec 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -196,7 +196,7 @@ void CodeGenFunction::FinishFunction(SourceLocation EndLoc) { bool CodeGenFunction::ShouldInstrumentFunction() { if (!CGM.getCodeGenOpts().InstrumentFunctions) return false; - if (CurFuncDecl->hasAttr<NoInstrumentFunctionAttr>()) + if (!CurFuncDecl || CurFuncDecl->hasAttr<NoInstrumentFunctionAttr>()) return false; return true; } |