
As well as two follow-on commits r332906, r332911 with a fix for test clang/test/CodeGen/split-debug-filename.c. llvm-svn: 333013
20 lines
577 B
ArmAsm
20 lines
577 B
ArmAsm
// Check that we split debug output properly
|
|
//
|
|
// RUN: %clang -target x86_64-unknown-linux-gnu -gsplit-dwarf -c -### %s 2> %t
|
|
// RUN: FileCheck -check-prefix=CHECK-ACTIONS < %t %s
|
|
//
|
|
// CHECK-ACTIONS: "-split-dwarf-file" "split-debug.dwo"
|
|
|
|
|
|
// RUN: %clang -target x86_64-macosx -gsplit-dwarf -c -### %s 2> %t
|
|
// RUN: FileCheck -check-prefix=CHECK-NO-ACTIONS < %t %s
|
|
//
|
|
// CHECK-NO-ACTIONS-NOT: -split-dwarf
|
|
|
|
|
|
// RUN: %clang -target x86_64-unknown-linux-gnu -gsplit-dwarf -o Bad.x -### %s 2> %t
|
|
// RUN: FileCheck -check-prefix=CHECK-BAD < %t %s
|
|
//
|
|
// CHECK-BAD-NOT: "Bad.dwo"
|
|
|