Another step moving away from the deprecated syntax of specifying pass pipeline in opt. Differential Revision: https://reviews.llvm.org/D119081
8 lines
160 B
LLVM
8 lines
160 B
LLVM
; RUN: opt < %s -passes=instcombine -disable-output
|
|
; PR1304
|
|
|
|
define i64 @bork(<1 x i64> %vec) {
|
|
%tmp = extractelement <1 x i64> %vec, i32 0
|
|
ret i64 %tmp
|
|
}
|