search for: basesize

Displaying 3 results from an estimated 3 matches for "basesize".

Did you mean: base_size
2015 Apr 14
5
[LLVMdev] [cfe-dev] A problem with names that can not be demangled.
...lib/IR/ValueSymbolTable.cpp seems to fix this > problem. > > > > ------------ start diff ------------------- > > @@ -54,5 +54,5 @@ void ValueSymbolTable::reinsertValue(Value* V) { > > // Trim any suffix off and append the next number. > > UniqueName.resize(BaseSize); > > - raw_svector_ostream(UniqueName) << ++LastUnique; > > + raw_svector_ostream(UniqueName) << "." << ++LastUnique; > > > > // Try insert the vmap entry with this suffix. > > -------------- end diff --------------------- >...
2011 Feb 26
5
Igo for PC ver. 8.3
I run this prog (http://www.compcar.ru/forum/showthread.php?t=7342)and this error appears: Fatal error occurred in main thread. Address:0x004a1f11 Exception:0xc0000005 I added every library whitch Igo needed (native-builtin) / I found them by Ollydebuger in Windows 7/ , but no success :( Could I add some other info to solve this?
2015 Apr 14
0
[LLVMdev] [cfe-dev] A problem with names that can not be demangled.
...number, making “_ZL3ByePi.1” The following change in lib/IR/ValueSymbolTable.cpp seems to fix this problem. ------------ start diff ------------------- @@ -54,5 +54,5 @@ void ValueSymbolTable::reinsertValue(Value* V) { // Trim any suffix off and append the next number. UniqueName.resize(BaseSize); - raw_svector_ostream(UniqueName) << ++LastUnique; + raw_svector_ostream(UniqueName) << "." << ++LastUnique; // Try insert the vmap entry with this suffix. -------------- end diff --------------------- However it causes 60 test failures. These are tests...