summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/crash.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/crash.ll')
-rw-r--r--test/CodeGen/X86/crash.ll23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/CodeGen/X86/crash.ll b/test/CodeGen/X86/crash.ll
index 8ce9e6c248..4b7c850993 100644
--- a/test/CodeGen/X86/crash.ll
+++ b/test/CodeGen/X86/crash.ll
@@ -92,26 +92,3 @@ foo:
}
-;; Issues with referring to a label that gets RAUW'd later.
-define i32 @test6a() nounwind {
-entry:
- %target = bitcast i8* blockaddress(@test6b, %test_label) to i8*
-
- call i32 @test6b(i8* %target)
-
- ret i32 0
-}
-
-define i32 @test6b(i8* %target) nounwind {
-entry:
- indirectbr i8* %target, [label %test_label]
-
-test_label:
-; assume some code here...
- br label %ret
-
-ret:
- ret i32 -1
-}
-
-