[llvm-commits] [parallel] CVS: llvm/test/Programs/LLVMSource/InvokeUnwind.ll Makefile 2003-08-03-ReservedWordFunction.ll
Misha Brukman
brukman at cs.uiuc.edu
Mon Mar 1 18:57:37 PST 2004
Changes in directory llvm/test/Programs/LLVMSource:
InvokeUnwind.ll updated: 1.1 -> 1.1.6.1
Makefile updated: 1.2 -> 1.2.2.1
2003-08-03-ReservedWordFunction.ll (r1.2) removed
---
Log message:
Merge from trunk
---
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.1.6.1
--- llvm/test/Programs/LLVMSource/InvokeUnwind.ll:1.1 Sun Aug 24 07:54:06 2003
+++ llvm/test/Programs/LLVMSource/InvokeUnwind.ll Mon Mar 1 17:59:09 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.2.2.1
--- llvm/test/Programs/LLVMSource/Makefile:1.2 Tue Jan 13 16:10:05 2004
+++ llvm/test/Programs/LLVMSource/Makefile Mon Mar 1 17:59:09 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