summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-mangle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-mangle.cpp')
-rw-r--r--source/slang/slang-mangle.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/source/slang/slang-mangle.cpp b/source/slang/slang-mangle.cpp
index b0568994f..acb561531 100644
--- a/source/slang/slang-mangle.cpp
+++ b/source/slang/slang-mangle.cpp
@@ -453,12 +453,20 @@ namespace Slang
// forward to something else? E.g., what if we
// are asked to mangle the name of a `typedef`?
+ auto decl = declRef.getDecl();
+
+ // Handle `__unmangled` modifier by simply emitting
+ // the given name.
+ if (decl->hasModifier<UnmangledModifier>())
+ {
+ emit(context, decl->getName()->text);
+ return;
+ }
+
// We will start with a unique prefix to avoid
// clashes with user-defined symbols:
emitRaw(context, "_S");
- auto decl = declRef.getDecl();
-
// Next we will add a bit of info to register
// the *kind* of declaration we are dealing with.
//