aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/Windows/movw-movt-relocations.ll
blob: 3ae6428d3a6b9f269af0755c564f3c1125f3bd9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
; RUN: llc -mtriple=thumbv7-windows -o - %s \
; RUN:   | FileCheck %s -check-prefix CHECK-WINDOWS

; RUN: llc -mtriple=thumbv7-eabi -o - %s \
; RUN:   | FileCheck %s -check-prefix CHECK-EABI

@i = common global i32 0, align 4
@j = common global i32 0, align 4

; Function Attrs: nounwind optsize readonly
define i32 @relocation(i32 %j, i32 %k) {
entry:
  %0 = load i32* @i, align 4
  %1 = load i32* @j, align 4
  %add = add nsw i32 %1, %0
  ret i32 %add
}

; CHECK-WINDOWS: movw r[[i:[0-4]]], :lower16:i
; CHECK-WINDOWS-NEXT: movt r[[i]], :upper16:i
; CHECK-WINDOWS: movw r[[j:[0-4]]], :lower16:j
; CHECK-WINDOWS-NEXT: movt r[[j]], :upper16:j

; CHECK-EABI: movw r[[i:[0-4]]], :lower16:i
; CHECK-EABI: movw r[[j:[0-4]]], :lower16:j
; CHECK-EABI-NEXT: movt r[[i]], :upper16:i
; CHECK-EABI-NEXT: movt r[[j]], :upper16:j