diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:01:22 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:01:22 +0000 |
commit | 71d5a2540a98c81f5bcaeb48805e0e2881f530ef (patch) | |
tree | 5343938942df402b49ec7300a1c25a2d4ccd5821 /test/Transforms/JumpThreading/crash-assertingvh.ll | |
parent | 31bbf64f3a4974a2d6c8b3b27ad2f519caf74057 (diff) |
Diffstat (limited to 'test/Transforms/JumpThreading/crash-assertingvh.ll')
-rw-r--r-- | test/Transforms/JumpThreading/crash-assertingvh.ll | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/Transforms/JumpThreading/crash-assertingvh.ll b/test/Transforms/JumpThreading/crash-assertingvh.ll deleted file mode 100644 index e78431992239..000000000000 --- a/test/Transforms/JumpThreading/crash-assertingvh.ll +++ /dev/null @@ -1,19 +0,0 @@ -; RUN: opt -disable-output < %s -passes='module(function(jump-threading),globaldce)' - -target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-unknown-linux-gnu" - -declare i32 @bar() - -define internal i32 @foo() { -entry: - %call4 = call i32 @bar() - %cmp5 = icmp eq i32 %call4, 0 - br i1 %cmp5, label %if.then6, label %if.end8 - -if.then6: - ret i32 0 - -if.end8: - ret i32 1 -} |