UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AndroidCommon.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5//------------------------------------------------------------------
6// Debug break
7
8#if defined(__aarch64__)
9 #define ULANG_BREAK() __asm__(".inst 0xd4200000")
10#elif defined(__arm__)
11 #define ULANG_BREAK() __asm__("trap")
12#else
13 #define ULANG_BREAK() __asm__("int $3")
14#endif