File size increase were found negligible from sparseness and zero block compression in f2fs and ext4 (supported filesystems for Android's userdata partition). Signed-off-by: Kalesh Singh <kaleshsingh@google.com> Co-authored-by: Kalesh Singh <kaleshsingh@google.com>
27 lines
981 B
C++
27 lines
981 B
C++
// Check that we add relevant linker flags for Android ARM/AArch64.
|
|
|
|
// RUN: %clang -### -target arm-linux-androideabi %s 2>&1 | \
|
|
// RUN: FileCheck --check-prefix=MAX-PAGE-SIZE %s
|
|
|
|
// RUN: %clang -target aarch64-none-linux-android \
|
|
// RUN: -### -v %s 2> %t
|
|
// RUN: FileCheck -check-prefix=GENERIC-ARM < %t %s
|
|
//
|
|
// RUN: %clang -target aarch64-none-linux-android \
|
|
// RUN: -mcpu=cortex-a53 -### -v %s 2> %t
|
|
// RUN: FileCheck -check-prefix=CORTEX-A53 < %t %s
|
|
//
|
|
// RUN: %clang -target aarch64-none-linux-android \
|
|
// RUN: -mcpu=cortex-a57 -### -v %s 2> %t
|
|
// RUN: FileCheck -check-prefix=CORTEX-A57 < %t %s
|
|
//
|
|
// RUN: %clang -target aarch64-none-linux-android \
|
|
// RUN: -### -v %s 2> %t
|
|
// RUN: FileCheck -check-prefix=MAX-PAGE-SIZE-AARCH64 < %t %s
|
|
//
|
|
// GENERIC-ARM: --fix-cortex-a53-843419
|
|
// CORTEX-A53: --fix-cortex-a53-843419
|
|
// CORTEX-A57-NOT: --fix-cortex-a53-843419
|
|
// MAX-PAGE-SIZE: "-z" "max-page-size=4096"
|
|
// MAX-PAGE-SIZE-AARCH64: "-z" "max-page-size=16384"
|