diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
| commit | f8af5cf600354830d4ccf59732403f0f073eccb9 (patch) | |
| tree | 2ba0398b4c42ad4f55561327538044fd2c925a8b /test/CodeGen/SystemZ/xor-02.ll | |
| parent | 59d6cff90eecf31cb3dd860c4e786674cfdd42eb (diff) | |
Notes
Diffstat (limited to 'test/CodeGen/SystemZ/xor-02.ll')
| -rw-r--r-- | test/CodeGen/SystemZ/xor-02.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/SystemZ/xor-02.ll b/test/CodeGen/SystemZ/xor-02.ll index c2b52b9b8e20b..7e28e231cfcd3 100644 --- a/test/CodeGen/SystemZ/xor-02.ll +++ b/test/CodeGen/SystemZ/xor-02.ll @@ -4,7 +4,7 @@ ; Check the lowest useful XILF value. define i32 @f1(i32 %a) { -; CHECK: f1: +; CHECK-LABEL: f1: ; CHECK: xilf %r2, 1 ; CHECK: br %r14 %xor = xor i32 %a, 1 @@ -13,7 +13,7 @@ define i32 @f1(i32 %a) { ; Check the high end of the signed range. define i32 @f2(i32 %a) { -; CHECK: f2: +; CHECK-LABEL: f2: ; CHECK: xilf %r2, 2147483647 ; CHECK: br %r14 %xor = xor i32 %a, 2147483647 @@ -23,7 +23,7 @@ define i32 @f2(i32 %a) { ; Check the low end of the signed range, which should be treated ; as a positive value. define i32 @f3(i32 %a) { -; CHECK: f3: +; CHECK-LABEL: f3: ; CHECK: xilf %r2, 2147483648 ; CHECK: br %r14 %xor = xor i32 %a, -2147483648 @@ -32,7 +32,7 @@ define i32 @f3(i32 %a) { ; Check the high end of the XILF range. define i32 @f4(i32 %a) { -; CHECK: f4: +; CHECK-LABEL: f4: ; CHECK: xilf %r2, 4294967295 ; CHECK: br %r14 %xor = xor i32 %a, 4294967295 |
