1 ; 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 10 define i32 @test(i32 %n) { 11 entry: 12 ret i32 0 13 } 14