X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FMC%2FSubtargetFeature.cpp;h=e8ed28e6277b6187e4fa4c8fe2d8c13dcd2baf30;hb=3f17d373273d59f07faa8cc11184bb702d212572;hp=27525c7f1295e169cc85e17ba501e8186ffc06f7;hpb=e02c34ba2ac2f9150236eccc0f495866f85dff9a;p=oota-llvm.git diff --git a/lib/MC/SubtargetFeature.cpp b/lib/MC/SubtargetFeature.cpp index 27525c7f129..e8ed28e6277 100644 --- a/lib/MC/SubtargetFeature.cpp +++ b/lib/MC/SubtargetFeature.cpp @@ -54,7 +54,7 @@ static inline bool isEnabled(const StringRef Feature) { /// Split - Splits a string of comma separated items in to a vector of strings. /// static void Split(std::vector &V, const StringRef S) { - SmallVector Tmp; + SmallVector Tmp; S.split(Tmp, ",", -1, false /* KeepEmpty */); V.assign(Tmp.begin(), Tmp.end()); }