diff options
| author | 2018-04-06 14:26:03 +0000 | |
|---|---|---|
| committer | 2018-04-06 14:26:03 +0000 | |
| commit | bdabc2f19ffb9e20600dad6e8a300842a7bda50e (patch) | |
| tree | c50e7b2e5449b074651bb82a58517a8ebc4a8cf7 /gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp | |
| parent | Print a 'p' flag for file descriptors that were opened after pledge(2). (diff) | |
| download | wireguard-openbsd-bdabc2f19ffb9e20600dad6e8a300842a7bda50e.tar.xz wireguard-openbsd-bdabc2f19ffb9e20600dad6e8a300842a7bda50e.zip | |
Import LLVM 6.0.1 release including clang, lld and lldb.
"where is the kaboom?" deraadt@
Diffstat (limited to 'gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp')
| -rw-r--r-- | gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp b/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp index 62fc52f6d09..f89fc8eb62a 100644 --- a/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp +++ b/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp @@ -6,6 +6,7 @@ // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// +// /// \file /// /// This file defines a special form of Alias Analysis called ``Provenance @@ -19,13 +20,21 @@ /// WARNING: This file knows about how certain Objective-C library functions are /// used. Naive LLVM IR transformations which would otherwise be /// behavior-preserving may break these assumptions. -/// +// //===----------------------------------------------------------------------===// #include "ProvenanceAnalysis.h" -#include "ObjCARC.h" -#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallPtrSet.h" +#include "llvm/ADT/SmallVector.h" +#include "llvm/Analysis/AliasAnalysis.h" +#include "llvm/Analysis/ObjCARCAnalysisUtils.h" +#include "llvm/IR/Instructions.h" +#include "llvm/IR/Module.h" +#include "llvm/IR/Use.h" +#include "llvm/IR/User.h" +#include "llvm/IR/Value.h" +#include "llvm/Support/Casting.h" +#include <utility> using namespace llvm; using namespace llvm::objcarc; |
