search for: sirrida

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

2014 Jan 01
8
[LLVMdev] LLVM 3.4 RC3 fails to run on Win32
Hello all, I downloaded LLVM-3.4-rc3-win32.exe from http://llvm.org/pre-releases/3.4/rc3/ but all *.exe files of bin directory fail to run on a native Windows XP 32 bit system. Could it be that they are compiled for a 64 bit system? Best regards Jasper Neumann
2014 Jan 24
3
[LLVMdev] RFC: Using hashing for switch statements
Hi folks, here is a short RFC regarding hashing for the implementation of switch statements and my preliminary patch. I posted this patch on 2014-01-16 21:58 at llvm-commits at cs.uiuc.edu. You can find a copy e.g. on http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140113/201782.html. Best regards Jasper === Preliminary: Special identifiers n number of given switch labels
2014 Jan 18
2
[LLVMdev] Scheduling quirks
Hello all! When I compile the following more or less stupid functions with clang++ -O3 -S test.cpp ===> int test_register(int x) { x ^= (x >> 2); x ^= (x >> 3); x = x ^ (x >> 4); int y = x; x >>= 5; x ^= y; // almost the same but explicit return x; } int test_scheduler(int x) { return ((x>>2) & 15) ^ ((x>>3) & 31); }