http://llvm.org/bugs/show_bug.cgi?id=2915
Summary: [llvm2.4-prerelease]
MultiSource/Benchmarks/MallocBench/gs/gs JIT regression
Product: new-bugs
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: new bugs
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
CC: [email protected]
There is an ulimit of 250M, but the JITed netbench-crc doesn't fit there.
I
$ cat Output/netbench-crc.out-jit
Not enough space to create packet data
exit 1
$ cat Output/netbench-crc.out-llc
CRC completed for 12000 packets
exit 154
This patch fixes it for me (x86-64 Linux):
Index: RunSafely.sh
===================================================================
--- RunSafely.sh (revision 57766)
+++ RunSafely.sh (working copy)
@@ -94,7 +94,7 @@
ULIMITCMD="$ULIMITCMD ulimit -f 10485760;"
# virtual memory: 250 MB should be enough for anybody. ;)
- ULIMITCMD="$ULIMITCMD ulimit -v 250000;"
+ ULIMITCMD="$ULIMITCMD ulimit -v 350000;"
esac
rm -f core core.*
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs