[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / WebAssembly / offset.ll
blob5679145d293deff0d51d98ac63da2e06724bb352
1 ; RUN: llc -filetype=obj %s -o - | obj2yaml | FileCheck %s
3 target triple = "wasm32-unknown-unknown"
5 ; CHECK:        - Type:            CODE
6 ; CHECK-NEXT:     Functions:
7 ; CHECK-NEXT:       - Index:           0
8 ; CHECK-NEXT:         Locals:
9 ; CHECK-NEXT:         Body:            41002802FFFFFFFF0F0B
10 define i32 @load_i32_from_negative_address() {
11   %t = load i32, i32* inttoptr (i32 -1 to i32*)
12   ret i32 %t
15 ; CHECK-NEXT:       - Index:           1
16 ; CHECK-NEXT:         Locals:
17 ; CHECK-NEXT:         Body:            41002802030B
18 define i32 @load_i32_from_wrapped_address() {
19   %t = load i32, i32* inttoptr (i32 4294967299 to i32*)
20   ret i32 %t