diff options
Diffstat (limited to 'llvm/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll')
-rw-r--r-- | llvm/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll b/llvm/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll index f339373ffc7..4c7d2d09256 100644 --- a/llvm/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll +++ b/llvm/test/CodeGen/MSP430/2009-05-10-CyclicDAG.ll @@ -7,9 +7,9 @@ target triple = "msp430-unknown-linux-gnu" define void @uip_arp_arpin() nounwind { entry: - %tmp = volatile load i16* @uip_len ; <i16> [#uses=1] + %tmp = load volatile i16* @uip_len ; <i16> [#uses=1] %cmp = icmp ult i16 %tmp, 42 ; <i1> [#uses=1] - volatile store i16 0, i16* @uip_len + store volatile i16 0, i16* @uip_len br i1 %cmp, label %if.then, label %if.end if.then: ; preds = %entry |