llvm-project/clang/test/CodeGen/disable-tail-calls.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
399 B
C
Raw Normal View History

// RUN: %clang_cc1 -triple x86_64-apple-macosx10.9.0 -emit-llvm -O1 -mdisable-tail-calls -o - < %s | FileCheck %s
typedef struct List {
struct List *next;
int data;
} List;
// CHECK-LABEL: define %struct.List* @find
List *find(List *head, int data) {
if (!head)
return 0;
if (head->data == data)
return head;
// CHECK: call %struct.List* @find
return find(head->next, data);
}