diff options
Diffstat (limited to 'test/CodeGen/X86/movgs.ll')
-rw-r--r-- | test/CodeGen/X86/movgs.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/CodeGen/X86/movgs.ll b/test/CodeGen/X86/movgs.ll index 8e964bf16898..00fc598ec658 100644 --- a/test/CodeGen/X86/movgs.ll +++ b/test/CodeGen/X86/movgs.ll @@ -1,16 +1,16 @@ -; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mcpu=penryn -mattr=sse4.1 | FileCheck %s --check-prefix=X32 +; RUN: llc < %s -mtriple=i386-linux-gnu -mcpu=penryn -mattr=sse4.1 | FileCheck %s --check-prefix=X32 ; RUN: llc < %s -mtriple=x86_64-linux -mcpu=penryn -mattr=sse4.1 | FileCheck %s --check-prefix=X64 ; RUN: llc < %s -mtriple=x86_64-win32 -mcpu=penryn -mattr=sse4.1 | FileCheck %s --check-prefix=X64 define i32 @test1() nounwind readonly { ; X32-LABEL: test1: -; X32: # BB#0: # %entry +; X32: # %bb.0: # %entry ; X32-NEXT: movl %gs:196, %eax ; X32-NEXT: movl (%eax), %eax ; X32-NEXT: retl ; ; X64-LABEL: test1: -; X64: # BB#0: # %entry +; X64: # %bb.0: # %entry ; X64-NEXT: movq %gs:320, %rax ; X64-NEXT: movl (%rax), %eax ; X64-NEXT: retq @@ -22,7 +22,7 @@ entry: define i64 @test2(void (i8*)* addrspace(256)* %tmp8) nounwind { ; X32-LABEL: test2: -; X32: # BB#0: # %entry +; X32: # %bb.0: # %entry ; X32-NEXT: subl $12, %esp ; X32-NEXT: movl {{[0-9]+}}(%esp), %eax ; X32-NEXT: calll *%gs:(%eax) @@ -32,7 +32,7 @@ define i64 @test2(void (i8*)* addrspace(256)* %tmp8) nounwind { ; X32-NEXT: retl ; ; X64-LABEL: test2: -; X64: # BB#0: # %entry +; X64: # %bb.0: # %entry ; X64-NEXT: {{(subq.*%rsp|pushq)}} ; X64-NEXT: callq *%gs:(%{{(rcx|rdi)}}) ; X64-NEXT: xorl %eax, %eax @@ -46,13 +46,13 @@ entry: define <2 x i64> @pmovsxwd_1(i64 addrspace(256)* %p) nounwind readonly { ; X32-LABEL: pmovsxwd_1: -; X32: # BB#0: # %entry +; X32: # %bb.0: # %entry ; X32-NEXT: movl {{[0-9]+}}(%esp), %eax ; X32-NEXT: pmovsxwd %gs:(%eax), %xmm0 ; X32-NEXT: retl ; ; X64-LABEL: pmovsxwd_1: -; X64: # BB#0: # %entry +; X64: # %bb.0: # %entry ; X64-NEXT: pmovsxwd %gs:(%{{(rcx|rdi)}}), %xmm0 ; X64-NEXT: retq entry: @@ -69,7 +69,7 @@ entry: ; address spaces. Make sure they aren't CSE'd. define i32 @test_no_cse() nounwind readonly { ; X32-LABEL: test_no_cse: -; X32: # BB#0: # %entry +; X32: # %bb.0: # %entry ; X32-NEXT: movl %gs:196, %eax ; X32-NEXT: movl (%eax), %eax ; X32-NEXT: movl %fs:196, %ecx @@ -77,7 +77,7 @@ define i32 @test_no_cse() nounwind readonly { ; X32-NEXT: retl ; ; X64-LABEL: test_no_cse: -; X64: # BB#0: # %entry +; X64: # %bb.0: # %entry ; X64-NEXT: movq %gs:320, %rax ; X64-NEXT: movl (%rax), %eax ; X64-NEXT: movq %fs:320, %rcx |