blob: 8bd5509e9698b12e36d540d6c518900503d81d74 [file] [log] [blame]
Dale Johannesen4caadc32009-08-20 16:58:04 +00001; RUN: llvm-as < %s | llc | FileCheck %s
Dale Johannesen7bcec7e2009-08-19 22:44:41 +00002; ModuleID = 'asm.c'
3target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
4target triple = "i386-apple-darwin9.6"
5
Chris Lattner934a7562009-08-22 00:44:24 +00006define i32 @test1() nounwind {
Dale Johannesen7bcec7e2009-08-19 22:44:41 +00007entry:
Chris Lattner934a7562009-08-22 00:44:24 +00008; CHECK: test1:
9; CHECK: movw %gs:6, %ax
Dale Johannesen7bcec7e2009-08-19 22:44:41 +000010 %asmtmp.i = tail call i16 asm "movw\09%gs:${1:a}, ${0:w}", "=r,ir,~{dirflag},~{fpsr},~{flags}"(i32 6) nounwind ; <i16> [#uses=1]
11 %0 = zext i16 %asmtmp.i to i32 ; <i32> [#uses=1]
12 ret i32 %0
13}
14
Chris Lattner934a7562009-08-22 00:44:24 +000015define zeroext i16 @test2(i32 %address) nounwind {
Dale Johannesen7bcec7e2009-08-19 22:44:41 +000016entry:
Chris Lattner934a7562009-08-22 00:44:24 +000017; CHECK: test2:
18; CHECK: movw %gs:(%eax), %ax
Dale Johannesen7bcec7e2009-08-19 22:44:41 +000019 %asmtmp = tail call i16 asm "movw\09%gs:${1:a}, ${0:w}", "=r,ir,~{dirflag},~{fpsr},~{flags}"(i32 %address) nounwind ; <i16> [#uses=1]
20 ret i16 %asmtmp
21}