blob: 8255d374a12c5abd0988b66c973f15dfbd9d8572 [file] [log] [blame]
Igor Laevsky354fd882017-11-15 12:36:57 +00001; Check that fuzzer will succeed on a trivial input
2; REQUIRES: x86-registered-target
3
4; Temporary bitcode file
5; RUN: opt -o %t %s
6
7; RUN: llvm-opt-fuzzer %t -ignore_remaining_args=1 -mtriple x86_64 -passes instcombine 2>&1 | FileCheck %s
8; CHECK: Running
9
10define i32 @test(i32 %n) {
11entry:
12 ret i32 0
13}