From 9adcf1c96cb18c99ff62aedb1aa41da3966d17b9 Mon Sep 17 00:00:00 2001 From: Jyotsna Verma Date: Thu, 11 Apr 2013 18:56:34 +0000 Subject: [PATCH] Exclude test30 of Sema/return.c for Hexagon since setjmp.h include file is unavailable for Hexagon. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179310 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Sema/return.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/Sema/return.c b/test/Sema/return.c index e231e81b09..ddd99a3272 100644 --- a/test/Sema/return.c +++ b/test/Sema/return.c @@ -197,6 +197,7 @@ int test29() { exit(1); } +#ifndef __hexagon__ #include jmp_buf test30_j; int test30() { @@ -209,6 +210,7 @@ int test30() { _longjmp(test30_j, 1); #endif } +#endif typedef void test31_t(int status); void test31(test31_t *callback __attribute__((noreturn))); -- 2.50.1