[llvm-commits] [llvm] r71426 - in /llvm/trunk: include/llvm/Target/TargetData.h lib/Target/TargetData.cpp
Jay Foad
jay.foad at gmail.com
Mon May 11 11:59:20 PDT 2009
>> +++ llvm/trunk/include/llvm/Target/TargetData.h Mon May 11 06:13:47 2009
>> @@ -23,13 +23,12 @@
>> #include "llvm/Pass.h"
>> #include "llvm/Support/DataTypes.h"
>> #include "llvm/ADT/SmallVector.h"
>> +#include "llvm/DerivedTypes.h"
>
> Can you just use a forward declaration of IntegerType instead of a #include?
Yes, but then whenever a .cpp file does "const Type *Ty =
TD->getIntPtrType()", it needs to include DerivedTypes.h instead. (In
practice this only affects one .cpp file.)
Nick Lewycky asked the same question, so I posted patches to do it
both ways (subject was "TargetData::getIntPtrType() to return
IntegerType"), and I thought you had explicitly OKed this version.
Thanks,
Jay.
More information about the llvm-commits
mailing list