aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendAda/switch.adb
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendAda/switch.adb')
-rw-r--r--test/FrontendAda/switch.adb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendAda/switch.adb b/test/FrontendAda/switch.adb
deleted file mode 100644
index 0c83a2e642..0000000000
--- a/test/FrontendAda/switch.adb
+++ /dev/null
@@ -1,12 +0,0 @@
--- RUN: %llvmgcc -S %s
-function Switch (N : Integer) return Integer is
-begin
- case N is
- when Integer'First .. -1 =>
- return -1;
- when 0 =>
- return 0;
- when others =>
- return 1;
- end case;
-end;