diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-09-19 17:18:01 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-09-19 17:18:01 +0800 |
commit | 9dc7a58993e73dfc595e0e077f14104574f441ed (patch) | |
tree | d0463e7f0a7ac34c5ca751b54d9e8d598e93978c /indra/newview | |
parent | 0147f812a54531242bfb3069ce85dcbc86f12947 (diff) |
Disable assembly instructions on non x86
at least for now.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 5d23f5b784..1de0ed3f93 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -5392,7 +5392,7 @@ void LLAppViewer::forceErrorBreakpoint() LL_WARNS() << "Forcing a deliberate breakpoint" << LL_ENDL; #ifdef LL_WINDOWS DebugBreak(); -#else +#elif __i386__ || __x86_64__ asm ("int $3"); #endif return; |