diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/loop-02.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/loop-02.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/SystemZ/loop-02.ll b/llvm/test/CodeGen/SystemZ/loop-02.ll index a3c1cf65ae2..deaa042086c 100644 --- a/llvm/test/CodeGen/SystemZ/loop-02.ll +++ b/llvm/test/CodeGen/SystemZ/loop-02.ll @@ -19,7 +19,7 @@ entry: loop: %count = phi i32 [ 0, %entry ], [ %next, %loop.next ] %next = add i32 %count, 1 - %val = load volatile i32 , i32 *%src + %val = load volatile i32, i32 *%src %cmp = icmp eq i32 %val, 0 br i1 %cmp, label %loop.next, label %loop.store |