tests: Stop mangling '-vg' into the triple, we don't use this currently.

- Also, lit is going to get a valgrind feature, instead.

llvm-svn: 166301
This commit is contained in:
Daniel Dunbar 2012-10-19 20:11:46 +00:00
parent cdde059a34
commit fc6bd5cbda
1 changed files with 0 additions and 5 deletions

View File

@ -165,11 +165,6 @@ def inferClang(PATH):
return clang
# When running under valgrind, we mangle '-vg' onto the end of the triple so we
# can check it with XFAIL and XTARGET.
if lit.useValgrind:
config.target_triple += '-vg'
config.clang = inferClang(config.environment['PATH']).replace('\\', '/')
if not lit.quiet:
lit.note('using clang: %r' % config.clang)