Displaying 3 results from an estimated 3 matches for "azillionmonkey".
Did you mean:
azillionmonkeys
2009 Mar 11
4
[LLVMdev] a different hash for APInts
I'm working on a bug where LLVM takes over six minutes to compile a
module. After some hand-editing, the module looks like this:
class half
{
private:
union uif
{
unsigned int i;
float f;
};
static const uif _toFloat[1 << 16];
};
const half::uif half::_toFloat[1 << 16] =
{
{0x00000000}, {0x33800000}, {0x34000000}, {0x34400000},
{0x34800000},
2013 Mar 08
0
Updated MSVC patch
...lude <stdint.h> to say:
/* If your compiler does not provide <stdint.h> you should provide a replacement
* which has suitable replacements for the following intX_T and uintX_t types.
* For example:
* http://msinttypes.googlecode.com/svn/trunk/stdint.h
* http://www.azillionmonkeys.com/qed/pstdint.h
*/
Is this not an acceptable solution? Its kind of neater and MSVC really
is the only compiler I know of that doesn't have <stdint.h>.
> Also don't forget to commit my earlier VERSION="1.3.0" patch. You can add
> the "pre1" in a nor...
2013 Mar 06
4
Updated MSVC patch
Thanks, Erik.
This is the delta that should fix everything up.
I hope that #include "share/compat.h" is acceptable from the test_streams
binary. If not, you can probably change it to FLAC/ordinals.h instead
Also don't forget to commit my earlier VERSION="1.3.0" patch. You can add
the "pre1" in a normal text editor without risk. I didn't include those