diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-11-15 09:36:58 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-11-15 09:36:58 +0000 |
commit | ec3ce8a99d9e024d45b3ab9327193030b7eba951 (patch) | |
tree | bc3d8e827e979ff181bce38d4eb6275357d08b95 /test | |
parent | 4da02d43b1981f8be6f3b64ae42161fb3f918a8d (diff) | |
download | external_llvm-ec3ce8a99d9e024d45b3ab9327193030b7eba951.zip external_llvm-ec3ce8a99d9e024d45b3ab9327193030b7eba951.tar.gz external_llvm-ec3ce8a99d9e024d45b3ab9327193030b7eba951.tar.bz2 |
Redirect unused test case output to /dev/null
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194798 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/alias-error.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/alias-error.ll b/test/CodeGen/X86/alias-error.ll index 1b34d17..8f01dcf 100644 --- a/test/CodeGen/X86/alias-error.ll +++ b/test/CodeGen/X86/alias-error.ll @@ -1,4 +1,4 @@ -; RUN: not llc -mtriple=i686-pc-linux-gnu %s 2>&1 | FileCheck %s +; RUN: not llc -mtriple=i686-pc-linux-gnu %s -o /dev/null 2>&1 | FileCheck %s @a = external global i32 @b = alias i32* @a |