diff options
author | James Y Knight <jyknight@google.com> | 2019-02-03 21:53:49 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2019-02-03 21:53:49 +0000 |
commit | 8799caee8db383e5edfee03e68a5b94a1ddffe25 (patch) | |
tree | b296de033fed093fb6638f5cae334846943ba790 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 1002ab3d1cd939fef89b717d9119dd07cea1cc41 (diff) | |
download | bcm5719-llvm-8799caee8db383e5edfee03e68a5b94a1ddffe25.tar.gz bcm5719-llvm-8799caee8db383e5edfee03e68a5b94a1ddffe25.zip |
[opaque pointer types] Trivial changes towards CallInst requiring
explicit function types.
llvm-svn: 353009
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 575a500c29d..04195e46a26 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -3990,8 +3990,8 @@ public: // Annotations Emission //===--------------------------------------------------------------------===// - /// Emit an annotation call (intrinsic or builtin). - llvm::Value *EmitAnnotationCall(llvm::Value *AnnotationFn, + /// Emit an annotation call (intrinsic). + llvm::Value *EmitAnnotationCall(llvm::Function *AnnotationFn, llvm::Value *AnnotatedVal, StringRef AnnotationStr, SourceLocation Location); |