diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2013-08-28 14:00:36 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2013-08-28 14:00:36 +0100 |
commit | c7874f2ad92a9f26430038f7a9426dec1fe632ea (patch) | |
tree | 36f8ee7e39294978134d70ef5f8384380a14cde2 /lib/Expr/Expr.cpp | |
parent | 821b6f6473334eaa6c78205603faf14a2c1aca41 (diff) | |
parent | 6c445f2b1a1f91ffb301bece325dd5a491922ce1 (diff) | |
download | klee-c7874f2ad92a9f26430038f7a9426dec1fe632ea.tar.gz |
Merge branch 'CompilerWarnings' of https://github.com/MartinNowack/klee into MartinNowack-CompilerWarnings
Diffstat (limited to 'lib/Expr/Expr.cpp')
-rw-r--r-- | lib/Expr/Expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Expr/Expr.cpp b/lib/Expr/Expr.cpp index 1187573b..a28ad907 100644 --- a/lib/Expr/Expr.cpp +++ b/lib/Expr/Expr.cpp @@ -342,7 +342,7 @@ void ConstantExpr::toMemory(void *address) { case Expr::Int64: *((uint64_t*) address) = getZExtValue(64); break; // FIXME: what about machines without x87 support? case Expr::Fl80: - *((long double*) address) = *(long double*) value.getRawData(); + *((long double*) address) = *(const long double*) value.getRawData(); break; } } |