summaryrefslogtreecommitdiff
path: root/test/FrontendAda/fat_fields.adb
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-03 21:46:22 +0000
committerChris Lattner <sabre@nondot.org>2007-04-03 21:46:22 +0000
commite10988ddbd4af043a63dd5b41676fe76ef8c5e79 (patch)
tree9e780997486575f2e6a4d67cc42c2f61f33cf159 /test/FrontendAda/fat_fields.adb
parente996748ea0d6b800dab75289034f4ed4dec0bdb1 (diff)
downloadllvm-e10988ddbd4af043a63dd5b41676fe76ef8c5e79.tar.gz
llvm-e10988ddbd4af043a63dd5b41676fe76ef8c5e79.tar.bz2
llvm-e10988ddbd4af043a63dd5b41676fe76ef8c5e79.tar.xz
move ada tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendAda/fat_fields.adb')
-rw-r--r--test/FrontendAda/fat_fields.adb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/FrontendAda/fat_fields.adb b/test/FrontendAda/fat_fields.adb
new file mode 100644
index 0000000000..906e34ee0b
--- /dev/null
+++ b/test/FrontendAda/fat_fields.adb
@@ -0,0 +1,10 @@
+-- RUN: %llvmgcc -c %s -o /dev/null
+-- RUN: %llvmgcc -c %s -O2 -o /dev/null
+package body Fat_Fields is
+ procedure Proc is
+ begin
+ if P = null then
+ null;
+ end if;
+ end;
+end;