search for: fmfinfomap

Displaying 1 result from an estimated 1 matches for "fmfinfomap".

2009 Nov 14
0
[LLVMdev] Incomplete X86MachineFunctionInfo type
In lib/Target/X86/X86COFFMachineModuleInfo.h we have: class X86MachineFunctionInfo; ... class X86COFFMachineModuleInfo : public MachineModuleInfoImpl { ... typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap; FMFInfoMap FunctionInfoMap; ... }; At this point in the translation unit X86MachineFunctionInfo is an incomplete type, yet it is being used to instantiate std::map. This is undefined behavior in C++03 (and C++0X) according to: 17.4.3.6 - Other functions [lib.res.on.function...