llvm-project/clang/test/CodeGen/arm-vaarg-align.c
Jim Grosbach 2987c57924 Tests: check for target availability for target-specific tests.
Lots of tests are using an explicit target triple w/o first checking that the
target is actually available. Add a REQUIRES clause to a bunch of them. This should
hopefully unbreak bots which don't configure w/ all targets enabled.

llvm-svn: 159949
2012-07-09 18:34:21 +00:00

35 lines
1.1 KiB
C

// REQUIRES: arm-registered-target
// RUN: %clang_cc1 -triple arm -target-abi aapcs %s -emit-llvm -o - | FileCheck -check-prefix=AAPCS %s
// RUN: %clang_cc1 -triple arm -target-abi apcs-gnu %s -emit-llvm -o - | FileCheck -check-prefix=APCS-GNU %s
/*
* Check that va_arg accesses stack according to ABI alignment
* long long and double require 8-byte alignment under AAPCS
* however, they only require 4-byte alignment under APCS
*/
long long t1(int i, ...) {
// AAPCS: t1
// APCS-GNU: t1
__builtin_va_list ap;
__builtin_va_start(ap, i);
// AAPCS: add i32 %{{.*}} 7
// AAPCS: and i32 %{{.*}} -8
// APCS-GNU-NOT: add i32 %{{.*}} 7
// APCS-GNU-NOT: and i32 %{{.*}} -8
long long ll = __builtin_va_arg(ap, long long);
__builtin_va_end(ap);
return ll;
}
double t2(int i, ...) {
// AAPCS: t2
// APCS-GNU: t2
__builtin_va_list ap;
__builtin_va_start(ap, i);
// AAPCS: add i32 %{{.*}} 7
// AAPCS: and i32 %{{.*}} -8
// APCS-GNU-NOT: add i32 %{{.*}} 7
// APCS-GNU-NOT: and i32 %{{.*}} -8
double ll = __builtin_va_arg(ap, double);
__builtin_va_end(ap);
return ll;
}