]> granicus.if.org Git - clang/commitdiff
We must always mangle attribute overloadable functions; even if in a
authorDaniel Dunbar <daniel@zuster.org>
Fri, 20 Feb 2009 23:09:27 +0000 (23:09 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Fri, 20 Feb 2009 23:09:27 +0000 (23:09 +0000)
system header.
 - Prevents a codegen crash when anything used anything in tgmath! :)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65200 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/Mangle.cpp
test/CodeGen/mangle.c [new file with mode: 0644]

index f007539714c51ac338223d3de17a69f9766e81d1..f310e989b51a3768abe689cbd2fc3527e451332e 100644 (file)
@@ -62,14 +62,14 @@ bool CXXNameMangler::mangle(const NamedDecl *D) {
   // FIXME: Actually use a visitor to decode these?
   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
     bool RequiresMangling = false;
-    // No mangled in an "implicit extern C" header.
-    if (Context.getSourceManager().getFileCharacteristic(FD->getLocation())
-          == SrcMgr::C_ExternCSystem)
-      RequiresMangling = false;
     // Clang's "overloadable" attribute extension to C/C++ implies
     // name mangling (always).
-    else if (FD->getAttr<OverloadableAttr>())
+    if (FD->getAttr<OverloadableAttr>())
       RequiresMangling = true;
+    // No mangled in an "implicit extern C" header.
+    else if (Context.getSourceManager().getFileCharacteristic(FD->getLocation())
+          == SrcMgr::C_ExternCSystem)
+      RequiresMangling = false;
     else if (Context.getLangOptions().CPlusPlus) {
       // C++ requires name mangling, unless we're in a C linkage
       // specification.
diff --git a/test/CodeGen/mangle.c b/test/CodeGen/mangle.c
new file mode 100644 (file)
index 0000000..fbee412
--- /dev/null
@@ -0,0 +1,9 @@
+// RUN: clang -arch i386 -emit-llvm -o %t %s &&
+// RUN: grep '@_Z2f0i' %t &&
+// RUN: grep '@_Z2f0l' %t
+
+// Make sure we mangle overloadable, even in C system headers.
+
+# 1 "somesystemheader.h" 1 3 4
+void __attribute__((__overloadable__)) f0(int a) {}
+void __attribute__((__overloadable__)) f0(long b) {}