http://llvm.org/bugs/show_bug.cgi?id=22107
David Blaikie <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |INVALID --- Comment #1 from David Blaikie <[email protected]> --- This is by design. The full debug info definition for the basic_string<char> type should be found in the debug info for your standard library (the -dbg package, usually). If you do not have debug info for your standard library (or any other library you are using) you can compile with -fstandalone-debug to disable this assumption in clang. (note that GCC does similar things in a subset of the cases that Clang does them, try this: #include <fstream> int main() { std::ofstream o; } and look at the debug info for "basic_ifstream<char..." in Clang and GCC's debug info) -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
