[Frontend] Name variable correctly.

Reported by: Kim Grasman!

llvm-svn: 250605
This commit is contained in:
Davide Italiano
2015-10-17 06:46:39 +00:00
parent d178f312dd
commit c4958b4b52

View File

@@ -1986,8 +1986,8 @@ void ModuleSignature::flush() {
}
void ModuleSignature::add(StringRef Value) {
for (auto &S : Value)
add(S, 8);
for (auto &c : Value)
add(c, 8);
}
llvm::APInt ModuleSignature::getAsInteger() const {