blob: efa7b69fd630aeb1f6b503aac05650295c8b9236 [file] [log] [blame]
Evan Chengba2cf3d2009-09-03 07:04:02 +00001; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin9 | FileCheck %s -check-prefix=X32
2; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 | FileCheck %s -check-prefix=X64
Evan Chenga65854f2008-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 Chengba2cf3d2009-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 Chenga65854f2008-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}