From 294943c99bf2049cba23736e2cb7a0dc13192e3e Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 11 Mar 2009 22:40:04 +0000 Subject: optimize i8 and i16 tls values. llvm-svn: 66725 --- llvm/test/CodeGen/X86/tls12.ll | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 llvm/test/CodeGen/X86/tls12.ll (limited to 'llvm/test/CodeGen/X86/tls12.ll') diff --git a/llvm/test/CodeGen/X86/tls12.ll b/llvm/test/CodeGen/X86/tls12.ll new file mode 100644 index 00000000000..c6f766d4472 --- /dev/null +++ b/llvm/test/CodeGen/X86/tls12.ll @@ -0,0 +1,10 @@ +; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t +; RUN: grep {movzbl %gs:i@NTPOFF, %eax} %t + +@i = thread_local global i8 15 + +define i8 @f() { +entry: + %tmp1 = load i8* @i + ret i8 %tmp1 +} -- cgit v1.2.3