ext: Bump DRAMPower to avoid compilation issues

This patch bumps DRAMPower to commit
19433a6897ede4bbb19b06694faa8589b5a6569a which contains a small fix
for clang, and a work-around for LTO with gcc 4.6.
This commit is contained in:
Andreas Hansson 2014-10-20 18:03:53 -04:00
parent 29dd2887f4
commit b976496a34
2 changed files with 2 additions and 2 deletions

View file

@ -159,6 +159,7 @@ class MemCommand {
} }
} }
assert(false); // Unknown name. assert(false); // Unknown name.
return NOP; // For clang compilation
} }
private: private:

View file

@ -54,8 +54,7 @@ throw(std::runtime_error)
T t; T t;
if (!(is >> f >> t)) { if (!(is >> f >> t)) {
throw std::runtime_error("Cannot convert '" + s + "' to " + throw std::runtime_error("fromString cannot convert " + s);
typeid(t).name() + " using fromString");
} }
return t; return t;