diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-08 23:23:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-08 23:23:25 +0000 |
commit | 27a973245022c0ed4e69b291daf79d6d99c1844f (patch) | |
tree | fbda319657b1f794e545e4b182b659b354b69d9d /llvm/test/CodeGen/X86/aliases.ll | |
parent | d802615d0cc2444160f3f1130fda87dd0d93f6af (diff) | |
download | bcm5719-llvm-27a973245022c0ed4e69b291daf79d6d99c1844f.tar.gz bcm5719-llvm-27a973245022c0ed4e69b291daf79d6d99c1844f.zip |
simplify EmitSectionOffset to always use .set if it is
available, the only thing this affects is that we produce
.set in one case we didn't before, which shouldn't harm
anything. Make EmitSectionOffset call EmitDifference
instead of duplicating it.
llvm-svn: 98005
Diffstat (limited to 'llvm/test/CodeGen/X86/aliases.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/aliases.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/aliases.ll b/llvm/test/CodeGen/X86/aliases.ll index 3020eb3c719..753d5d9f6ce 100644 --- a/llvm/test/CodeGen/X86/aliases.ll +++ b/llvm/test/CodeGen/X86/aliases.ll @@ -1,6 +1,6 @@ ; RUN: llc < %s -mtriple=i686-pc-linux-gnu -asm-verbose=false -o %t ; RUN: grep { = } %t | count 7 -; RUN: grep set %t | count 16 +; RUN: grep set %t | count 18 ; RUN: grep globl %t | count 6 ; RUN: grep weak %t | count 1 ; RUN: grep hidden %t | count 1 |