aboutsummaryrefslogtreecommitdiff
path: root/test/functionalities/longjmp/main.c
blob: 5d3f4364f631c1a15e675812240c435c557a99bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//===-- main.c --------------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <setjmp.h>
#include <stdio.h>

jmp_buf j;

void do_jump(void)
{
    longjmp(j, 1); // non-local goto
}

int main (void)
{
    if (setjmp(j) == 0)
        do_jump();
    else
        return 0; // destination of longjmp

    return 1;
}