Files
clang-p2996/llvm/test/MC/WebAssembly/offset.ll
Sam Clegg a5908009cd [WebAsembly] Update default triple in test files to wasm32-unknown-unkown.
Summary: The final -wasm component has been the default for some time now.

Subscribers: jfb, dschuff, jgravelle-google, eraman, aheejin, JDevlieghere, sunfish, llvm-commits

Differential Revision: https://reviews.llvm.org/D46342

llvm-svn: 332007
2018-05-10 17:49:11 +00:00

22 lines
663 B
LLVM

; RUN: llc -filetype=obj %s -o - | obj2yaml | FileCheck %s
target triple = "wasm32-unknown-unknown"
; CHECK: - Type: CODE
; CHECK-NEXT: Functions:
; CHECK-NEXT: - Index: 0
; CHECK-NEXT: Locals:
; CHECK-NEXT: Body: 41002802FFFFFFFF0F0B
define i32 @load_i32_from_negative_address() {
%t = load i32, i32* inttoptr (i32 -1 to i32*)
ret i32 %t
}
; CHECK-NEXT: - Index: 1
; CHECK-NEXT: Locals:
; CHECK-NEXT: Body: 41002802030B
define i32 @load_i32_from_wrapped_address() {
%t = load i32, i32* inttoptr (i32 4294967299 to i32*)
ret i32 %t
}