From 7b800b29e048a2bb05c8d6d04442524677f2c061 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Wed, 13 Feb 2019 12:04:05 -0800 Subject: Add missing trailing newlines --- tests/const-expr-div.c | 2 +- tests/const-expr-mod.c | 2 +- tests/const-expr-shr.c | 2 +- tests/global-align.c | 2 +- tests/nested-array.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/const-expr-div.c b/tests/const-expr-div.c index bac37a5..3ea302a 100644 --- a/tests/const-expr-div.c +++ b/tests/const-expr-div.c @@ -1 +1 @@ -int x = -2/-1; \ No newline at end of file +int x = -2 / -1; diff --git a/tests/const-expr-mod.c b/tests/const-expr-mod.c index 2f12704..024c94c 100644 --- a/tests/const-expr-mod.c +++ b/tests/const-expr-mod.c @@ -1 +1 @@ -int x = -2%-1; \ No newline at end of file +int x = -2 % -1; diff --git a/tests/const-expr-shr.c b/tests/const-expr-shr.c index 40bcb44..6a46b98 100644 --- a/tests/const-expr-shr.c +++ b/tests/const-expr-shr.c @@ -1 +1 @@ -int x = -1 >> 1; \ No newline at end of file +int x = -1 >> 1; diff --git a/tests/global-align.c b/tests/global-align.c index c44c2d5..9d35d91 100644 --- a/tests/global-align.c +++ b/tests/global-align.c @@ -1 +1 @@ -_Alignas(8) char c; \ No newline at end of file +_Alignas(8) char c; diff --git a/tests/nested-array.c b/tests/nested-array.c index 3c62258..0f0a121 100644 --- a/tests/nested-array.c +++ b/tests/nested-array.c @@ -1 +1 @@ -int x[2][3]; \ No newline at end of file +int x[2][3]; -- cgit v1.2.3