diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-07 09:53:03 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-07 12:02:13 +0000 |
commit | 77c1bfbb3b4d88dfcf92b77791fe170899d84b85 (patch) | |
tree | 43035866b8a18011f7d40889c6781d61fc09cd30 /test/Feature/ShiftCheck.c | |
parent | d8f820dc2521064f68c124621f30e4e0fdd0bcc0 (diff) | |
download | klee-77c1bfbb3b4d88dfcf92b77791fe170899d84b85.tar.gz |
Renamed %llvmgcc and %llvmgxx to %clang and %clangxx respectively.
Diffstat (limited to 'test/Feature/ShiftCheck.c')
-rw-r--r-- | test/Feature/ShiftCheck.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/ShiftCheck.c b/test/Feature/ShiftCheck.c index 326eadb2..686f9511 100644 --- a/test/Feature/ShiftCheck.c +++ b/test/Feature/ShiftCheck.c @@ -3,7 +3,7 @@ // * optimized code will have this check inlined // In both cases, the `ashr` instruction should have been marked with meta-data: klee.check.shift // -// RUN: %llvmgcc %s -emit-llvm -g -c -o %t.bc +// RUN: %clang %s -emit-llvm -g -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --check-overshift=true %t.bc >%t.shift_enabled.log // RUN: FileCheck %s -input-file=%t.klee-out/assembly.ll -check-prefix=SHIFT-ENABLED @@ -11,7 +11,7 @@ // RUN: %klee --output-dir=%t.klee-out --check-overshift=true --optimize %t.bc >%t.shift_enabled.log // RUN: FileCheck %s -input-file=%t.klee-out/assembly.ll -check-prefix=SHIFT-ENABLED-OPT // Same test without debug information -// RUN: %llvmgcc %s -emit-llvm -c -o %t.bc +// RUN: %clang %s -emit-llvm -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --check-overshift=true %t.bc >%t.shift_enabled.log // RUN: FileCheck %s -input-file=%t.klee-out/assembly.ll -check-prefix=SHIFT-ENABLED |