diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2013-07-01 20:39:50 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2013-07-01 20:39:50 +0000 |
commit | 3bd2b92267df204c5633329611cc7ae3e1c11834 (patch) | |
tree | 0a7aa5b104ed3c6307414b8b22c54a27d4943271 /lib | |
parent | db8e0bbedb46c9f781f8a32728b1019f34089ed8 (diff) | |
download | external_llvm-3bd2b92267df204c5633329611cc7ae3e1c11834.zip external_llvm-3bd2b92267df204c5633329611cc7ae3e1c11834.tar.gz external_llvm-3bd2b92267df204c5633329611cc7ae3e1c11834.tar.bz2 |
[PowerPC] Also add "msync" alias
This adds an alias for "msync" (which is used on Book E
systems instead of "sync").
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185375 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 5c2c59f..d535deb 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -2286,6 +2286,7 @@ class PPCAsmPseudo<string asm, dag iops> def : InstAlias<"sc", (SC 0)>; def : InstAlias<"sync", (SYNC 0)>; +def : InstAlias<"msync", (SYNC 0)>; def : InstAlias<"lwsync", (SYNC 1)>; def : InstAlias<"ptesync", (SYNC 2)>; |