[cfe-commits] r166731 - /cfe/trunk/test/CodeGenCXX/catch-undef-behavior.cpp
Chris Lattner
clattner at apple.com
Thu Oct 25 21:48:31 PDT 2012
On Oct 25, 2012, at 3:27 PM, Richard Smith <richard-llvm at metafoo.co.uk> wrote:
> Author: rsmith
> Date: Thu Oct 25 17:27:30 2012
> New Revision: 166731
>
> URL: http://llvm.org/viewvc/llvm-project?rev=166731&view=rev
> Log:
> LLVM's hashing routines produce a size_t, and thus generate different values for 32- and 64-bit host compilers. This really needs to be fixed -- the IR generated should not depend on the host -- but this change will get the bots green again. Proper fix to follow.
Codegen shouldn't depend on specific hash values - iteration over densemap (and friends) is considered nondeterministic. What are you seeing?
-Chris
More information about the cfe-commits
mailing list