diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-09-25 20:38:59 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-09-25 20:38:59 +0000 |
commit | eb33723ace79be06fb44e7826274cb7756efe95d (patch) | |
tree | 62b646665d7e3440c372bc3bee90c2295708266d /llvm/lib/VMCore/Verifier.cpp | |
parent | edb31faf92b8685929a5bde6627ce351e8712d8c (diff) | |
download | bcm5719-llvm-eb33723ace79be06fb44e7826274cb7756efe95d.tar.gz bcm5719-llvm-eb33723ace79be06fb44e7826274cb7756efe95d.zip |
Move Attribute::typeIncompatible inside of the Attributes class.
llvm-svn: 164629
Diffstat (limited to 'llvm/lib/VMCore/Verifier.cpp')
-rw-r--r-- | llvm/lib/VMCore/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp index 647a52fbdd2..292456ab63c 100644 --- a/llvm/lib/VMCore/Verifier.cpp +++ b/llvm/lib/VMCore/Verifier.cpp @@ -546,7 +546,7 @@ void Verifier::VerifyParameterAttrs(Attributes Attrs, Type *Ty, MutI.getAsString() + " are incompatible!", V); } - Attributes TypeI = Attrs & Attribute::typeIncompatible(Ty); + Attributes TypeI = Attrs & Attributes::typeIncompatible(Ty); Assert1(!TypeI, "Wrong type for attribute " + TypeI.getAsString(), V); |