1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[gn build] (manually) port 78bda894129 from 2012 because 924d62ca4a85 added it to check-llvm

This commit is contained in:
Nico Weber 2021-07-22 09:11:07 -04:00
parent 2a337676d3
commit 54dea701e7
2 changed files with 9 additions and 0 deletions

View File

@ -278,6 +278,7 @@ group("test") {
"//llvm/tools/llvm-sim",
"//llvm/tools/llvm-size",
"//llvm/tools/llvm-split",
"//llvm/tools/llvm-stress",
"//llvm/tools/llvm-strings",
"//llvm/tools/llvm-symbolizer:symlinks",
"//llvm/tools/llvm-tapi-diff",

View File

@ -0,0 +1,8 @@
executable("llvm-stress") {
deps = [
"//llvm/lib/Analysis",
"//llvm/lib/IR",
"//llvm/lib/Support",
]
sources = [ "llvm-stress.cpp" ]
}