diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-10 04:56:59 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-10 04:56:59 +0000 |
commit | e2d76237ecaa1b16ac2fce4b47477b47f5499b7a (patch) | |
tree | 45f972bf60b479a6cda141f81afad021ffb1607f /llvm/test/lib | |
parent | 1d9d4bdc993c384342603e4354762eb36c1c569f (diff) | |
download | bcm5719-llvm-e2d76237ecaa1b16ac2fce4b47477b47f5499b7a.tar.gz bcm5719-llvm-e2d76237ecaa1b16ac2fce4b47477b47f5499b7a.zip |
Remove prcontext.
llvm-svn: 81427
Diffstat (limited to 'llvm/test/lib')
-rw-r--r-- | llvm/test/lib/llvm.exp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/test/lib/llvm.exp b/llvm/test/lib/llvm.exp index cd36c61b5e7..a8eec3a4965 100644 --- a/llvm/test/lib/llvm.exp +++ b/llvm/test/lib/llvm.exp @@ -46,7 +46,7 @@ proc execOneLine { test PRS outcome lineno line } { # This procedure performs variable substitutions on the RUN: lines of a test # cases. proc substitute { line test tmpFile } { - global srcroot objroot srcdir objdir subdir target_triplet prcontext + global srcroot objroot srcdir objdir subdir target_triplet global llvmgcc llvmgxx llvmgcc_version llvmgccmajvers ocamlopt global gccpath gxxpath compile_c compile_cxx link shlibext llvmlibsdir global llvmdsymutil valgrind grep gas bugpoint_topts @@ -57,8 +57,6 @@ proc substitute { line test tmpFile } { #replace %% with _#MARKER#_ to make the replacement of %% more predictable regsub -all {%%} $new_line {_#MARKER#_} new_line - #replace %prcontext with prcontext.tcl (Must replace before %p) - regsub -all {%prcontext} $new_line $prcontext new_line #replace %llvmgcc_only with actual path to llvmgcc regsub -all {%llvmgcc_only} $new_line "$llvmgcc" new_line #replace %llvmgcc with actual path to llvmgcc |