From 3352e874dd18a2aeff443721f6eacd119885a679 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sun, 9 Sep 2018 18:11:47 -0500 Subject: [PATCH] Update a test to account for correct behavior of #line directive. --- Tests/Conformance/C3.3.4.1.CC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Conformance/C3.3.4.1.CC b/Tests/Conformance/C3.3.4.1.CC index c8134c4..e60aa8d 100644 --- a/Tests/Conformance/C3.3.4.1.CC +++ b/Tests/Conformance/C3.3.4.1.CC @@ -8,7 +8,7 @@ main () char str[80], fname[20] = "C3.3.4.1.CC"; #line 10 - if (__LINE__ != 11) + if (__LINE__ != 10) goto Fail; strcpy(str, __FILE__);