diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-31 05:54:15 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-31 05:54:15 +0000 |
commit | 5b24759dfffc6f8d4c76e08e48fb16a2366c8d40 (patch) | |
tree | bde41d12ed7b6169ec1f1aa23302463c1096e0a8 | |
parent | c7d7c6fb3a63538fb88cb2c529b691ba8ab7e44e (diff) | |
download | bcm5719-llvm-5b24759dfffc6f8d4c76e08e48fb16a2366c8d40.tar.gz bcm5719-llvm-5b24759dfffc6f8d4c76e08e48fb16a2366c8d40.zip |
Move an input file to Inputs instead of using RUN: true.
llvm-svn: 220953
-rw-r--r-- | llvm/test/Linker/Inputs/visibility.ll (renamed from llvm/test/Linker/visibility2.ll) | 4 | ||||
-rw-r--r-- | llvm/test/Linker/visibility.ll (renamed from llvm/test/Linker/visibility1.ll) | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/llvm/test/Linker/visibility2.ll b/llvm/test/Linker/Inputs/visibility.ll index 4fabf6f8d12..f5b2065b85f 100644 --- a/llvm/test/Linker/visibility2.ll +++ b/llvm/test/Linker/Inputs/visibility.ll @@ -1,7 +1,3 @@ -; This file is used by visibility1.ll, so it doesn't actually do anything itself -; -; RUN: true - ; Variables @v1 = weak hidden global i32 0 @v2 = weak protected global i32 0 diff --git a/llvm/test/Linker/visibility1.ll b/llvm/test/Linker/visibility.ll index 131f6d59b5e..fc950fa1d89 100644 --- a/llvm/test/Linker/visibility1.ll +++ b/llvm/test/Linker/visibility.ll @@ -1,7 +1,7 @@ -; RUN: llvm-link %s %p/visibility2.ll -S | FileCheck %s -; RUN: llvm-link %p/visibility2.ll %s -S | FileCheck %s +; RUN: llvm-link %s %p/Inputs/visibility.ll -S | FileCheck %s +; RUN: llvm-link %p/Inputs/visibility.ll %s -S | FileCheck %s -; The values in this file are strong, the ones in visibility2.ll are weak, +; The values in this file are strong, the ones in Inputs/visibility.ll are weak, ; but we should still get the visibility from them. ; Variables |