mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 20:15:49 -04:00

Fix this failure by ignoring the id of the metadata being checked: http://green.lab.llvm.org/green/job/clang-stage1-cmake-RA-incremental/3046/consoleFull#-21332887158254eaf0-7326-4999-85b0-388101f2d404 llvm-svn: 373237
8 lines
254 B
C
8 lines
254 B
C
// RUN: cat %s | %clang -emit-llvm -g -S \
|
|
// RUN: -Xclang -main-file-name -Xclang test/foo.c -x c - -o - | FileCheck %s
|
|
// CHECK: ; ModuleID = 'test/foo.c'
|
|
// CHECK: source_filename = "test/foo.c"
|
|
// CHECK: !DIFile(filename: "test/foo.c"
|
|
|
|
int main() {}
|