aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/AsmParser/Lexer.l1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/AsmParser/Lexer.l b/lib/AsmParser/Lexer.l
index 678697a7df..a5cb4eff26 100644
--- a/lib/AsmParser/Lexer.l
+++ b/lib/AsmParser/Lexer.l
@@ -71,7 +71,6 @@ static double HexToFP(const char *Buffer) {
assert(sizeof(double) == sizeof(Result) &&
"Data sizes incompatible on this target!");
void *ProxyPointer = &Result; // Break TBAA correctly
- cerr << "VALUE: " << *(double*)ProxyPointer << "\n";
return *(double*)ProxyPointer; // Cast Hex constant to double
}