mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-06 13:32:49 +00:00
2109f23000
The -E output from clang did not produce the correct indentation on the first line. This is because MoveToLine returned false, and when this happens, the regular process for producing initial indentation is skipped. Thanks to Eli for suggesting a way to simplify this to a one-line change. llvm-svn: 173657
8 lines
135 B
C
8 lines
135 B
C
foo
|
|
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
|
|
bar
|
|
|
|
// CHECK: {{^ }}foo
|
|
// CHECK: {{^ }}bar
|
|
|