1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00

Removed debug print statement.

llvm-svn: 6641
This commit is contained in:
Misha Brukman 2003-06-06 00:00:54 +00:00
parent c3b2d93a5c
commit 999c7802ab

View File

@ -80,7 +80,6 @@ static void *getMemory(unsigned NumPages) {
PROT_READ|PROT_WRITE|PROT_EXEC,
MAP_PRIVATE|MAP_ANON|MAP_FIXED, -1, 0); /* fd = -1 */
Counter += pageSize*NumPages;
std::cerr << "getMemory() returning " << pa << "\n";
#else
std::cerr << "This architecture is not supported by the JIT\n";
abort();