diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2020-01-14 15:46:13 +0100 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2020-01-14 18:56:29 +0100 |
commit | 2948ec5ca98f8593584f2117bc92fe8d75f6f098 (patch) | |
tree | 417b18aa594f1db005b57eca3c27eb9ca0517427 /llvm/lib | |
parent | 0877843ddacca0bea049b65d8a328e5038c72b66 (diff) | |
download | bcm5719-llvm-2948ec5ca98f8593584f2117bc92fe8d75f6f098.tar.gz bcm5719-llvm-2948ec5ca98f8593584f2117bc92fe8d75f6f098.zip |
Removed PointerUnion3 and PointerUnion4 aliases in favor of the variadic template
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/IPO/LowerTypeTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/LowerTypeTests.cpp b/llvm/lib/Transforms/IPO/LowerTypeTests.cpp index c3c498e38f2..fa664966faf 100644 --- a/llvm/lib/Transforms/IPO/LowerTypeTests.cpp +++ b/llvm/lib/Transforms/IPO/LowerTypeTests.cpp @@ -1811,7 +1811,7 @@ bool LowerTypeTestsModule::lower() { // reference them. This is used to partition the set of type identifiers in // the module into disjoint sets. using GlobalClassesTy = EquivalenceClasses< - PointerUnion3<GlobalTypeMember *, Metadata *, ICallBranchFunnel *>>; + PointerUnion<GlobalTypeMember *, Metadata *, ICallBranchFunnel *>>; GlobalClassesTy GlobalClasses; // Verify the type metadata and build a few data structures to let us |