summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-05-21 20:09:13 +0000
committerChris Lattner <sabre@nondot.org>2011-05-21 20:09:13 +0000
commit40f5fbcc5c95bb96c43ce2d06d57ae9b7f852539 (patch)
tree0d0a9412ccb8baf2ddc8c217b9dfa91af481da1d /include
parent21c60904ce6b937cb0c8744375e9c1a95fe0e495 (diff)
downloadllvm-40f5fbcc5c95bb96c43ce2d06d57ae9b7f852539.tar.gz
llvm-40f5fbcc5c95bb96c43ce2d06d57ae9b7f852539.tar.bz2
llvm-40f5fbcc5c95bb96c43ce2d06d57ae9b7f852539.tar.xz
add a copy ctor to TargetLibraryInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetLibraryInfo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetLibraryInfo.h b/include/llvm/Target/TargetLibraryInfo.h
index 0914b5daa4..02a1a3ca23 100644
--- a/include/llvm/Target/TargetLibraryInfo.h
+++ b/include/llvm/Target/TargetLibraryInfo.h
@@ -51,6 +51,7 @@ public:
static char ID;
TargetLibraryInfo();
TargetLibraryInfo(const Triple &T);
+ explicit TargetLibraryInfo(const TargetLibraryInfo &TLI);
/// has - This function is used by optimizations that want to match on or form
/// a given library function.