diff options
| author | Yong He <yonghe@outlook.com> | 2021-06-09 07:34:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-09 10:34:52 -0400 |
| commit | 430b832a292785a79ca4c25f037c658db8bdc2d2 (patch) | |
| tree | 4e717be173f2f43cff14a695a425f39fd00b0079 /source/slang/slang-ir.cpp | |
| parent | 6cee1eeda28c1ce1e5d326a0c43427b4776a1d09 (diff) | |
Fix CUDA vector layout logic. (#1879)
And rename debug symbols for navis.
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'source/slang/slang-ir.cpp')
| -rw-r--r-- | source/slang/slang-ir.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/slang/slang-ir.cpp b/source/slang/slang-ir.cpp index 90d0181f7..fe60fb480 100644 --- a/source/slang/slang-ir.cpp +++ b/source/slang/slang-ir.cpp @@ -6023,11 +6023,11 @@ namespace Slang #ifdef _DEBUG // Natvis sometimes cannot find enum values. // Export symbols for them to make sure natvis works correctly when debugging external projects. -SLANG_API const int __SlangIROpNameHint = Slang::kIROp_NameHintDecoration; -SLANG_API const int __SlangIROpExport = Slang::kIROp_ExportDecoration; -SLANG_API const int __SlangIROpImport = Slang::kIROp_ImportDecoration; -SLANG_API const int __SlangIROpStringLit = Slang::kIROp_StringLit; -SLANG_API const int __SlangIROpIntLit = Slang::kIROp_IntLit; +SLANG_API const int SlangDebug__IROpNameHint = Slang::kIROp_NameHintDecoration; +SLANG_API const int SlangDebug__IROpExport = Slang::kIROp_ExportDecoration; +SLANG_API const int SlangDebug__IROpImport = Slang::kIROp_ImportDecoration; +SLANG_API const int SlangDebug__IROpStringLit = Slang::kIROp_StringLit; +SLANG_API const int SlangDebug__IROpIntLit = Slang::kIROp_IntLit; #endif #endif |
