From: Ulrich Weigand Date: Mon, 1 Jul 2013 20:39:50 +0000 (+0000) Subject: [PowerPC] Also add "msync" alias X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3bd2b92267df204c5633329611cc7ae3e1c11834;p=oota-llvm.git [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 --- diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 5c2c59f21be..d535debc223 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -2286,6 +2286,7 @@ class PPCAsmPseudo 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)>; diff --git a/test/MC/PowerPC/ppc64-encoding-bookII.s b/test/MC/PowerPC/ppc64-encoding-bookII.s index b6c2e621d42..34ed77aa7f6 100644 --- a/test/MC/PowerPC/ppc64-encoding-bookII.s +++ b/test/MC/PowerPC/ppc64-encoding-bookII.s @@ -57,6 +57,8 @@ # CHECK: sync 0 # encoding: [0x7c,0x00,0x04,0xac] sync +# CHECK: sync 0 # encoding: [0x7c,0x00,0x04,0xac] + msync # CHECK: sync 1 # encoding: [0x7c,0x20,0x04,0xac] lwsync # CHECK: sync 2 # encoding: [0x7c,0x40,0x04,0xac]