[llvm-commits] CVS: llvm/test/Programs/LLVMSource/InvokeUnwind.ll Makefile 2003-08-03-ReservedWordFunction.ll
Chris Lattner
lattner at cs.uiuc.edu
Mon Feb 9 16:54:01 PST 2004
Changes in directory llvm/test/Programs/LLVMSource:
InvokeUnwind.ll updated: 1.1 -> 1.2
Makefile updated: 1.2 -> 1.3
2003-08-03-ReservedWordFunction.ll (r1.2) removed
---
Log message:
2003-08-03-ReservedWordFunction.ll fails, move it to a regression test, will file
PR soon.
InvokeUnwind needed serious 'bring up to speed' work.
Enable exceptions for InvokeUnwind test
---
Diffs of the changes: (+4 -6)
Index: llvm/test/Programs/LLVMSource/InvokeUnwind.ll
diff -u llvm/test/Programs/LLVMSource/InvokeUnwind.ll:1.1 llvm/test/Programs/LLVMSource/InvokeUnwind.ll:1.2
--- llvm/test/Programs/LLVMSource/InvokeUnwind.ll:1.1 Sun Aug 24 07:54:06 2003
+++ llvm/test/Programs/LLVMSource/InvokeUnwind.ll Mon Feb 9 16:53:14 2004
@@ -1,17 +1,13 @@
-; Test to make sure the invoke instruction and llvm.unwind intrinsic are
-; working...
+; Test to make sure the invoke instruction and unwind are working...
implementation
-declare void %llvm.unwind()
declare void %abort()
internal void %throw(bool %ShouldThrow) {
br bool %ShouldThrow, label %Throw, label %NoThrow
Throw:
- call void %llvm.unwind()
- call void %abort() ;;; dead
- ret void
+ unwind
NoThrow:
ret void
}
Index: llvm/test/Programs/LLVMSource/Makefile
diff -u llvm/test/Programs/LLVMSource/Makefile:1.2 llvm/test/Programs/LLVMSource/Makefile:1.3
--- llvm/test/Programs/LLVMSource/Makefile:1.2 Tue Jan 13 16:10:05 2004
+++ llvm/test/Programs/LLVMSource/Makefile Mon Feb 9 16:53:14 2004
@@ -6,6 +6,8 @@
LEVEL = ../../..
DISABLE_FOR_LLVM_PROGRAMS := 1
PROGRAM_REQUIRED_TO_EXIT_OK := 1
+REQUIRES_EH_SUPPORT := 1
+
PROGRAMS_TO_TEST := $(basename $(wildcard *.ll))
include $(LEVEL)/test/Programs/Makefile.programs
More information about the llvm-commits
mailing list