Files
clang-p2996/lldb/test/Shell/Commands/command-disassemble-mixed.c
David Spickett 865b1190e6 [lldb] XFAIL command-disassemble-mixed.c on Windows
Either clang-cl has different assembly output or we're not mapping
source to assembly properly on Windows. We (Linaro) will find out which.

https://lab.llvm.org/buildbot/#/builders/219/builds/4195
2023-07-19 09:04:56 +00:00

21 lines
343 B
C

// invalid mixed disassembly line
// XFAIL: system-windows
// RUN: %clang_host -g %s -o %t
// RUN: %lldb %t -o "dis -m -n main" -o "exit" | FileCheck %s
// CHECK: int main
// CHECK: int i
// CHECK-NOT: invalid mixed disassembly line
// CHECK: return 0;
int main(int argc, char **argv)
{
int i;
for (i=0; i < 10; ++i) ;
return 0;
}