aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-08-20-EnumSizeProblem.cpp
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-26 14:58:39 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-26 14:58:39 +0000
commit91d66aa243c7075e05c06c9382b505c3293769e4 (patch)
treeced6efff9c2d0012708d96a2a69bd62798c3a2d7 /test/C++Frontend/2003-08-20-EnumSizeProblem.cpp
parent67181ca7f67cd2959ee5d1d583d8b7e179f44d96 (diff)
Removing these tests from the regressions directory.
They now live in llvm/test/Programs/SingleSource/Regression alongside their UnitTest brethren. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8722 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend/2003-08-20-EnumSizeProblem.cpp')
-rw-r--r--test/C++Frontend/2003-08-20-EnumSizeProblem.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/C++Frontend/2003-08-20-EnumSizeProblem.cpp b/test/C++Frontend/2003-08-20-EnumSizeProblem.cpp
deleted file mode 100644
index 19d2d6ade3..0000000000
--- a/test/C++Frontend/2003-08-20-EnumSizeProblem.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-typedef enum
-{
- _URC_NO_REASON = 0,
- _URC_FOREIGN_EXCEPTION_CAUGHT = 1,
- _URC_FATAL_PHASE2_ERROR = 2,
- _URC_FATAL_PHASE1_ERROR = 3,
- _URC_NORMAL_STOP = 4,
- _URC_END_OF_STACK = 5,
- _URC_HANDLER_FOUND = 6,
- _URC_INSTALL_CONTEXT = 7,
- _URC_CONTINUE_UNWIND = 8
-} _Unwind_Reason_Code;
-
-int foo( _Unwind_Reason_Code X) {
- return X;
-}
-
-int main() {
- foo(_URC_END_OF_STACK);
- return 0;
-}