XFAIL the test I added with vg_leak, apparently it is the first and only llc

-filetype=obj test, and -filetype=obj leaks a few objects. Added a FIXME, we
need to sort out the ownership model for the various MC objects.

llvm-svn: 103769
This commit is contained in:
Daniel Dunbar 2010-05-14 07:47:51 +00:00
parent 3e51388e6a
commit 148e876ac2
2 changed files with 3 additions and 0 deletions

View File

@ -140,6 +140,8 @@ bool LLVMTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
case CGFT_ObjectFile: { case CGFT_ObjectFile: {
// Create the code emitter for the target if it exists. If not, .o file // Create the code emitter for the target if it exists. If not, .o file
// emission fails. // emission fails.
//
// FIXME: These are currently leaked.
MCCodeEmitter *MCE = getTarget().createCodeEmitter(*this, *Context); MCCodeEmitter *MCE = getTarget().createCodeEmitter(*this, *Context);
TargetAsmBackend *TAB = getTarget().createAsmBackend(TargetTriple); TargetAsmBackend *TAB = getTarget().createAsmBackend(TargetTriple);
if (MCE == 0 || TAB == 0) if (MCE == 0 || TAB == 0)

View File

@ -1,4 +1,5 @@
; RUN: llc -filetype=obj -o - < %s ; RUN: llc -filetype=obj -o - < %s
; XFAIL: vg_leak
; ModuleID = 't.c' ; ModuleID = 't.c'
target triple = "x86_64-apple-darwin10.0.0" target triple = "x86_64-apple-darwin10.0.0"