mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
7681c6da60
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124655 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
195 B
LLVM
9 lines
195 B
LLVM
; RUN: opt < %s -instsimplify -S | FileCheck %s
|
|
|
|
define <2 x i32> @sdiv(<2 x i32> %x) {
|
|
; CHECK: @sdiv
|
|
%div = sdiv <2 x i32> %x, <i32 1, i32 1>
|
|
ret <2 x i32> %div
|
|
; CHECK: ret <2 x i32> %x
|
|
}
|