
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
180 B
C
8 lines
180 B
C
// RUN: %clang -mno-backchain --target=s390x-linux -S -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// CHECK: define void @foo() [[NUW:#[0-9]+]]
|
|
void foo(void) {
|
|
}
|
|
|
|
// CHECK-NOT: "backchain"
|