summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/atomicrmw-nand-03.ll
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-07-19 16:21:55 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-07-19 16:21:55 +0000
commitdb92fb07169af6941dfe47439f9849d370f0eb0b (patch)
tree0e2cc8604ad34832f39bdb4c980252f34cfa09f0 /test/CodeGen/SystemZ/atomicrmw-nand-03.ll
parentcae5d5ea658e05091e66b742b5834f1896ff2f5d (diff)
[SystemZ] Add NRK, ORK and XRK
The atomic tests assume the two-operand forms, so I've restricted them to z10. Running and-01.ll, or-01.ll and xor-01.ll for z196 as well as z10 shows why using convertToThreeAddress() is better than exposing the three-operand forms first and then converting back to two operands where possible (which is what I'd originally tried). Using the three-operand form first stops us from taking advantage of NG, OG and XG for spills. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186683 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/SystemZ/atomicrmw-nand-03.ll')
-rw-r--r--test/CodeGen/SystemZ/atomicrmw-nand-03.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/SystemZ/atomicrmw-nand-03.ll b/test/CodeGen/SystemZ/atomicrmw-nand-03.ll
index be306a29e36..c511bd608fd 100644
--- a/test/CodeGen/SystemZ/atomicrmw-nand-03.ll
+++ b/test/CodeGen/SystemZ/atomicrmw-nand-03.ll
@@ -1,6 +1,6 @@
; Test 32-bit atomic NANDs.
;
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
+; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s
; Check NANDs of a variable.
define i32 @f1(i32 %dummy, i32 *%src, i32 %b) {