28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
|
// REQUIRES: aarch64-registered-target
|
||
|
|
||
|
// RUN: %clang -O3 -target aarch64-linux-eabi %s -S -o- \
|
||
|
// RUN: | FileCheck --check-prefix=CHECK-NO --check-prefix=CHECK %s
|
||
|
// RUN: %clang -O3 -target aarch64-linux-eabi -mfix-cortex-a53-835769 %s -S -o- 2>&1 \
|
||
|
// RUN: | FileCheck --check-prefix=CHECK-YES --check-prefix=CHECK %s
|
||
|
// RUN: %clang -O3 -target aarch64-linux-eabi -mno-fix-cortex-a53-835769 %s -S -o- 2>&1 \
|
||
|
// RUN: | FileCheck --check-prefix=CHECK-NO --check-prefix=CHECK %s
|
||
|
|
||
|
// RUN: %clang -O3 -target aarch64-android-eabi %s -S -o- \
|
||
|
// RUN: | FileCheck --check-prefix=CHECK-YES --check-prefix=CHECK %s
|
||
|
// RUN: %clang -O3 -target aarch64-android-eabi -mfix-cortex-a53-835769 %s -S -o- \
|
||
|
// RUN: | FileCheck --check-prefix=CHECK-YES --check-prefix=CHECK %s
|
||
|
// RUN: %clang -O3 -target aarch64-android-eabi -mno-fix-cortex-a53-835769 %s -S -o- \
|
||
|
// RUN: | FileCheck --check-prefix=CHECK-NO --check-prefix=CHECK %s
|
||
|
|
||
|
typedef long int64_t;
|
||
|
|
||
|
int64_t f_load_madd_64(int64_t a, int64_t b, int64_t *c) {
|
||
|
int64_t result = a+b*(*c);
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
// CHECK: ldr
|
||
|
// CHECK-YES-NEXT: nop
|
||
|
// CHECK-NO-NOT: nop
|
||
|
// CHECK-NEXT: madd
|