mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 04:06:07 +00:00

This option, like the corresponding gcc option, is SystemZ-specific and enables storing frame backchain links, as specified in the ABI. Differential Revision: http://reviews.llvm.org/D19891 llvm-svn: 268575
8 lines
212 B
C
8 lines
212 B
C
// RUN: %clang_cc1 -mbackchain -triple s390x-linux -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// CHECK: define void @foo() [[NUW:#[0-9]+]]
|
|
void foo(void) {
|
|
}
|
|
|
|
// CHECK: attributes [[NUW]] = { {{.*}} "backchain" {{.*}} }
|