blob: 4be881e84d6822023eca15c011c975260636bf9e [file] [log] [blame]
Dan Gohman36a09472009-09-08 23:54:48 +00001; RUN: llc < %s -mtriple=i386-apple-darwin9 | FileCheck %s -check-prefix=X32
2; RUN: llc < %s -mtriple=x86_64-apple-darwin9 | FileCheck %s -check-prefix=X64
Evan Chengae94e592008-12-05 01:06:39 +00003
4@x = external hidden global i32 ; <i32*> [#uses=1]
5@y = extern_weak hidden global i32 ; <i32*> [#uses=1]
6
7define i32 @t() nounwind readonly {
8entry:
Evan Cheng63476a82009-09-03 07:04:02 +00009; X32: _t:
10; X32: movl _y, %eax
11
12; X64: _t:
13; X64: movl _y(%rip), %eax
14
Evan Chengae94e592008-12-05 01:06:39 +000015 %0 = load i32* @x, align 4 ; <i32> [#uses=1]
16 %1 = load i32* @y, align 4 ; <i32> [#uses=1]
17 %2 = add i32 %1, %0 ; <i32> [#uses=1]
18 ret i32 %2
19}