mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
16 lines
340 B
LLVM
16 lines
340 B
LLVM
; RUN: opt < %s -extract-blocks -disable-output
|
|
define i32 @foo() {
|
|
br label %EB
|
|
|
|
EB: ; preds = %0
|
|
%V = invoke i32 @foo( )
|
|
to label %Cont unwind label %Unw ; <i32> [#uses=1]
|
|
|
|
Cont: ; preds = %EB
|
|
ret i32 %V
|
|
|
|
Unw: ; preds = %EB
|
|
unwind
|
|
}
|
|
|