llvm-6502/test/Assembler/flags-unsigned.ll
Dan Gohman 08d012eba4 Rename the new unsigned and signed keywords to nuw and nsw,
which stand for no-unsigned-wrap and no-signed-wrap.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76810 91177308-0d34-0410-b5e6-96231b3b80d8
2009-07-22 22:44:56 +00:00

19 lines
564 B
LLVM

; RUN: llvm-as < %s | llvm-dis | FileCheck %s
@addr = external global i64
define i64 @add_unsigned_ce() {
; CHECK: ret i64 nuw add (i64 ptrtoint (i64* @addr to i64), i64 91)
ret i64 nuw add (i64 ptrtoint (i64* @addr to i64), i64 91)
}
define i64 @sub_unsigned_ce() {
; CHECK: ret i64 nuw sub (i64 ptrtoint (i64* @addr to i64), i64 91)
ret i64 nuw sub (i64 ptrtoint (i64* @addr to i64), i64 91)
}
define i64 @mul_unsigned_ce() {
; CHECK: ret i64 nuw mul (i64 ptrtoint (i64* @addr to i64), i64 91)
ret i64 nuw mul (i64 ptrtoint (i64* @addr to i64), i64 91)
}