aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/990409-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/990409-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/990409-1.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/gcc.dg/990409-1.c b/gcc/testsuite/gcc.dg/990409-1.c
deleted file mode 100644
index cda9dd87ad8..00000000000
--- a/gcc/testsuite/gcc.dg/990409-1.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Test that __LINE__ works when embedded in a macro. */
-/* { dg-do run } */
-
-#define XLINE __LINE__
-
-void
-bar(int x, int y)
-{
- if (x != y)
- abort();
-}
-
-int
-main(void)
-{
- bar(XLINE, __LINE__);
- return 0;
-}