From: Lang Hames Date: Sun, 4 Nov 2012 05:08:08 +0000 (+0000) Subject: Test case for r167363. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f320aa93253cc69d03579b37fd0724055883a6e;p=clang Test case for r167363. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167369 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Parser/pragma-fp-contract.c b/test/Parser/pragma-fp-contract.c index fa2bb11d9c..568c0a0a88 100644 --- a/test/Parser/pragma-fp-contract.c +++ b/test/Parser/pragma-fp-contract.c @@ -5,3 +5,8 @@ void f1(void) { /* expected-error@+1 {{'#pragma fp_contract' should only appear at file scope or at the start of a compound expression}} */ #pragma STDC FP_CONTRACT ON } + +void f2(void) { + #pragma STDC FP_CONTRACT OFF + #pragma STDC FP_CONTRACT ON +}