mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
59858cf792
after their associated opcodes rather than before. This makes them a little easier to read. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77194 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
558 B
LLVM
19 lines
558 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
|
|
@addr = external global i64
|
|
|
|
define i64 @add_signed_ce() {
|
|
; CHECK: ret i64 add nsw (i64 ptrtoint (i64* @addr to i64), i64 91)
|
|
ret i64 add nsw (i64 ptrtoint (i64* @addr to i64), i64 91)
|
|
}
|
|
|
|
define i64 @sub_signed_ce() {
|
|
; CHECK: ret i64 sub nsw (i64 ptrtoint (i64* @addr to i64), i64 91)
|
|
ret i64 sub nsw (i64 ptrtoint (i64* @addr to i64), i64 91)
|
|
}
|
|
|
|
define i64 @mul_signed_ce() {
|
|
; CHECK: ret i64 mul nsw (i64 ptrtoint (i64* @addr to i64), i64 91)
|
|
ret i64 mul nsw (i64 ptrtoint (i64* @addr to i64), i64 91)
|
|
}
|