summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCInstr64Bit.td
diff options
context:
space:
mode:
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>2012-12-13 18:45:54 +0000
committerBill Schmidt <wschmidt@linux.vnet.ibm.com>2012-12-13 18:45:54 +0000
commitdfebc4cc4c267f797e823b781d73586cc6fc49c5 (patch)
tree61fefa1183e19c11bef174b68ebc499fb1d483e8 /lib/Target/PowerPC/PPCInstr64Bit.td
parent860e7cdab9d5eceda5ac52ae0ddfb4bdab0067f2 (diff)
downloadllvm-dfebc4cc4c267f797e823b781d73586cc6fc49c5.tar.gz
llvm-dfebc4cc4c267f797e823b781d73586cc6fc49c5.tar.bz2
llvm-dfebc4cc4c267f797e823b781d73586cc6fc49c5.tar.xz
This is just a clean-up patch that simplifies the initial-exec TLS logic by
avoiding use of machine operand flags. No change in observable behavior, so no new test cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCInstr64Bit.td')
-rw-r--r--lib/Target/PowerPC/PPCInstr64Bit.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCInstr64Bit.td b/lib/Target/PowerPC/PPCInstr64Bit.td
index bc66d5c0a0..429c60b742 100644
--- a/lib/Target/PowerPC/PPCInstr64Bit.td
+++ b/lib/Target/PowerPC/PPCInstr64Bit.td
@@ -384,7 +384,7 @@ def ADD8 : XOForm_1<31, 266, 0, (outs G8RC:$rT), (ins G8RC:$rA, G8RC:$rB),
// ADD8 has a special form: reg = ADD8(reg, sym@tls) for use by the
// initial-exec thread-local storage model.
def ADD8TLS : XOForm_1<31, 266, 0, (outs G8RC:$rT), (ins G8RC:$rA, tlsreg:$rB),
- "add $rT, $rA, $rB", IntSimple,
+ "add $rT, $rA, $rB@tls", IntSimple,
[(set G8RC:$rT, (add G8RC:$rA, tglobaltlsaddr:$rB))]>;
let Defs = [CARRY] in {