aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AsmParser
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-07 08:13:29 +0000
committerChris Lattner <sabre@nondot.org>2002-04-07 08:13:29 +0000
commit74dbc99777cab64b449e7402e9f1d7641c8fa341 (patch)
treeedabe6f664728d64496b20e4b03413b9e03ce56e /lib/AsmParser
parentaef6546191b7165031f1933cde24f13fe04d9c74 (diff)
downloadexternal_llvm-74dbc99777cab64b449e7402e9f1d7641c8fa341.zip
external_llvm-74dbc99777cab64b449e7402e9f1d7641c8fa341.tar.gz
external_llvm-74dbc99777cab64b449e7402e9f1d7641c8fa341.tar.bz2
Remove debugging code accidentally checked in!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2137 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-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 678697a..a5cb4ef 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
}