From 2a6411bbbdc6a23605fa206e07fc4f99a3d5dff2 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 7 Apr 2009 21:37:46 +0000 Subject: Reduce code duplication on the TLS implementation. This introduces a small regression on the generated code quality in the case we are just computing addresses, not loading values. Will work on it and on X86-64 support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68552 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/tls6.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/CodeGen/X86/tls6.ll') diff --git a/test/CodeGen/X86/tls6.ll b/test/CodeGen/X86/tls6.ll index e0bcade..fc10a57 100644 --- a/test/CodeGen/X86/tls6.ll +++ b/test/CodeGen/X86/tls6.ll @@ -1,6 +1,6 @@ ; RUN: llvm-as < %s | llc -march=x86 -mtriple=i386-linux-gnu > %t -; RUN: grep {movl %gs:0, %eax} %t -; RUN: grep {leal i@NTPOFF(%eax), %eax} %t +; RUN: grep {movl \$i@NTPOFF, %eax} %t +; RUN: grep {addl %gs:0, %eax} %t @i = internal thread_local global i32 15 -- cgit v1.1