diff options
| author | Diana Picus <diana.picus@linaro.org> | 2016-05-23 12:33:34 +0000 |
|---|---|---|
| committer | Diana Picus <diana.picus@linaro.org> | 2016-05-23 12:33:34 +0000 |
| commit | eaf34cf67e966c3cf0dccb1f37fefa04e54eb7e2 (patch) | |
| tree | 5494b9cc1a92988af3194580b73ade7675004949 /llvm/test | |
| parent | 6bc3e13133fc291e2ca373512fc3e443e1cb8b59 (diff) | |
| download | bcm5719-llvm-eaf34cf67e966c3cf0dccb1f37fefa04e54eb7e2.tar.gz bcm5719-llvm-eaf34cf67e966c3cf0dccb1f37fefa04e54eb7e2.zip | |
[BPF] Remove exit-on-error flag in test (PR27766)
The exit-on-error flag on the many_args1.ll test is needed to avoid an
unreachable in BPFTargetLowering::LowerCall. We can also avoid it by ignoring
any superfluous arguments to the call (i.e. any arguments after the first 5).
Fixes PR27766
llvm-svn: 270419
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/BPF/many_args1.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/BPF/many_args1.ll b/llvm/test/CodeGen/BPF/many_args1.ll index a5500dad1ed..08218f452d0 100644 --- a/llvm/test/CodeGen/BPF/many_args1.ll +++ b/llvm/test/CodeGen/BPF/many_args1.ll @@ -1,4 +1,4 @@ -; RUN: not llc -march=bpf -exit-on-error < %s 2> %t1 +; RUN: not llc -march=bpf < %s 2> %t1 ; RUN: FileCheck %s < %t1 ; CHECK: too many args |

