diff options
author | Martin Nowack <martin@se.inf.tu-dresden.de> | 2012-11-27 11:01:15 +0100 |
---|---|---|
committer | Martin Nowack <martin.nowack@gmail.com> | 2013-08-28 08:54:50 +0200 |
commit | 4ffd4b14b768a01006d515c6cad5c9b36ffdc4be (patch) | |
tree | 330c1c1a53cb338b207469acfd3e17b5c237c6bf /test | |
parent | e0dc5a1321ce657d15c564b029f1252d29eecb2c (diff) | |
download | klee-4ffd4b14b768a01006d515c6cad5c9b36ffdc4be.tar.gz |
Fix test case to use llvm-link instead of llvm-ld
Diffstat (limited to 'test')
-rw-r--r-- | test/regression/2007-08-16-invalid-constant-value.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/2007-08-16-invalid-constant-value.c b/test/regression/2007-08-16-invalid-constant-value.c index 75f87fe4..ea0a5fee 100644 --- a/test/regression/2007-08-16-invalid-constant-value.c +++ b/test/regression/2007-08-16-invalid-constant-value.c @@ -1,7 +1,7 @@ // RUN: rm -f %t4.out %t4.err %t4.log // RUN: %llvmgcc %s -emit-llvm -O2 -c -o %t1.bc // RUN: llvm-as -f %p/../Feature/_utils._ll -o %t2.bc -// RUN: llvm-ld -disable-opt %t1.bc %t2.bc -o %t3 +// RUN: llvm-link %t1.bc %t2.bc -o %t3.bc // RUN: %klee %t3.bc #include <assert.h> |