[llvm-commits] [llvm] r92934 - /llvm/trunk/lib/Target/X86/X86FastISel.cpp

Dan Gohman gohman at apple.com
Thu Jan 7 13:10:54 PST 2010


On Jan 7, 2010, at 11:45 AM, Eric Christopher wrote:
> 
> +  // If we've gotten here we need to make sure we don't have a constant
> +  // that needs a relocation, because then we shouldn't put it into the
> +  // constant pool.
> +  if (C->getRelocationInfo() != Constant::NoRelocation)
> +    return 0;

Would Constant::LocalRelocation be ok here?

Dan




More information about the llvm-commits mailing list