diff options
| author | Tim Foley <tim.foley.is@gmail.com> | 2017-09-25 11:27:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-25 11:27:54 -0700 |
| commit | b6cf0f4ae0f3f9d1f377d3f134dcf994676e68b4 (patch) | |
| tree | bcc781497b36664cbebe10d91f888be674c82f8b /source/slang/mangle.h | |
| parent | b206af702cbc8cc42c73052ad690d69984ecd7b7 (diff) | |
| parent | 0aa440a22ab18bc4a9077fcf17966ed4949d684b (diff) | |
Merge pull request #191 from tfoleyNV/ir-work
More work on IR-based lowering and cross-compilation
Diffstat (limited to 'source/slang/mangle.h')
| -rw-r--r-- | source/slang/mangle.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/slang/mangle.h b/source/slang/mangle.h new file mode 100644 index 000000000..6eea96a19 --- /dev/null +++ b/source/slang/mangle.h @@ -0,0 +1,15 @@ +#ifndef SLANG_MANGLE_H_INCLUDED +#define SLANG_MANGLE_H_INCLUDED + +// This file implements the name mangling scheme for the Slang language. + +#include "../core/basic.h" + +namespace Slang +{ + struct Decl; + + String getMangledName(Decl* decl); +} + +#endif
\ No newline at end of file |
