[libunwind][AIX] implementation of the unwinder for AIX
Summary:
This is an add-on patch to address comments.
- Replace #elif in file <assembly.h> with #else as suggested;
- Reversed the indentation changes in the main patch.
Differential Revision: https://reviews.llvm.org/D100132
NOKEYCHECK=True
GitOrigin-RevId: 9c0152cda35f58ad9916b698c7a645d4a4dfeaf2
diff --git a/src/assembly.h b/src/assembly.h
index 9554ca8..fb07d04 100644
--- a/src/assembly.h
+++ b/src/assembly.h
@@ -209,7 +209,7 @@
#if defined(__powerpc64__)
#define VBYTE_LEN 8
#define CSECT_ALIGN 3
-#elif defined(__ppc__)
+#else
#define VBYTE_LEN 4
#define CSECT_ALIGN 2
#endif