forked from OSchip/llvm-project
parent
347e0f26be
commit
4c0d9e2249
|
@ -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.
|
||||
|
|
|
@ -61,6 +61,12 @@ TargetLibraryInfo::TargetLibraryInfo(const Triple &T) : ImmutablePass(ID) {
|
|||
initialize(*this, T);
|
||||
}
|
||||
|
||||
TargetLibraryInfo::TargetLibraryInfo(const TargetLibraryInfo &TLI)
|
||||
: ImmutablePass(ID) {
|
||||
memcpy(AvailableArray, TLI.AvailableArray, sizeof(AvailableArray));
|
||||
}
|
||||
|
||||
|
||||
/// disableAllFunctions - This disables all builtins, which is used for options
|
||||
/// like -fno-builtin.
|
||||
void TargetLibraryInfo::disableAllFunctions() {
|
||||
|
|
Loading…
Reference in New Issue