[LLVMbugs] [Bug 13177] New: [Windows] Mangling of repeating bool types
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Fri Jun 22 10:28:32 PDT 2012
http://llvm.org/bugs/show_bug.cgi?id=13177
Bug #: 13177
Summary: [Windows] Mangling of repeating bool types
Product: clang
Version: unspecified
Platform: PC
OS/Version: Windows NT
Status: NEW
Severity: enhancement
Priority: P
Component: C++
AssignedTo: unassignedclangbugs at nondot.org
ReportedBy: timurrrr at google.com
CC: dgregor at apple.com, llvmbugs at cs.uiuc.edu
Classification: Unclassified
Here's a test:
void f6(bool a, bool b) {}
// CHECK: "\01?f6@@YAX_N0 at Z"
// NOW: "\01?f6@@YAX_N_N at Z"
struct S {
void mbb(bool a, bool b) {}
};
void g4(const char* a, struct S* b, const char *c, struct S* d) {
// CHECK: "\01?g4@@YAXPBDPAUS@@01 at Z"
b->mbb(false, false);
// CHECK: "\01?mbb at S@@QAEX_N0 at Z"
// NOW: "\01?mbb at S@@QAEX_N_N at Z"
}
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the llvm-bugs
mailing list