diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2012-04-14 13:54:10 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2012-04-14 13:54:10 +0000 |
commit | 63faed5b8e4f2755f127fcb8aa440480c0649327 (patch) | |
tree | 19c69a04768629f2d440944b71cbe90adae0b615 /test/CodeGen/SystemZ/03-RetAndImmSubreg.ll | |
parent | d4c8b5d2e851b0e8a063c6bf8543a4823a26c15a (diff) |
Notes
Diffstat (limited to 'test/CodeGen/SystemZ/03-RetAndImmSubreg.ll')
-rw-r--r-- | test/CodeGen/SystemZ/03-RetAndImmSubreg.ll | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/test/CodeGen/SystemZ/03-RetAndImmSubreg.ll b/test/CodeGen/SystemZ/03-RetAndImmSubreg.ll deleted file mode 100644 index c5326ab536b89..0000000000000 --- a/test/CodeGen/SystemZ/03-RetAndImmSubreg.ll +++ /dev/null @@ -1,38 +0,0 @@ -; RUN: llc < %s -march=systemz | grep ngr | count 6 - -define i32 @foo1(i32 %a, i32 %b) { -entry: - %c = and i32 %a, 1 - ret i32 %c -} - -define i32 @foo2(i32 %a, i32 %b) { -entry: - %c = and i32 %a, 131072 - ret i32 %c -} - -define zeroext i32 @foo3(i32 %a, i32 %b) { -entry: - %c = and i32 %a, 1 - ret i32 %c -} - -define signext i32 @foo4(i32 %a, i32 %b) { -entry: - %c = and i32 %a, 131072 - ret i32 %c -} - -define zeroext i32 @foo5(i32 %a, i32 %b) { -entry: - %c = and i32 %a, 1 - ret i32 %c -} - -define signext i32 @foo6(i32 %a, i32 %b) { -entry: - %c = and i32 %a, 131072 - ret i32 %c -} - |