diff options
author | Alp Toker <alp@nuanti.com> | 2014-06-27 02:35:57 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-06-27 02:35:57 +0000 |
commit | 8e7e1b87c69dde365cd61bc1ae318373842d36b9 (patch) | |
tree | 0f1df2415d588b2c968cb6844f9bf81ae965e2e7 /clang/test/Frontend/ir-support.c | |
parent | 961ca43180aede455f1bfd94af09c30b1b99a9f9 (diff) | |
download | bcm5719-llvm-8e7e1b87c69dde365cd61bc1ae318373842d36b9.tar.gz bcm5719-llvm-8e7e1b87c69dde365cd61bc1ae318373842d36b9.zip |
Partially disable test from r211844
ELF assembly contains .line directives that differ based on the input filename.
Weaken the test while considering options.
llvm-svn: 211849
Diffstat (limited to 'clang/test/Frontend/ir-support.c')
-rw-r--r-- | clang/test/Frontend/ir-support.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/test/Frontend/ir-support.c b/clang/test/Frontend/ir-support.c index 3e1089b965e..3a526caff32 100644 --- a/clang/test/Frontend/ir-support.c +++ b/clang/test/Frontend/ir-support.c @@ -1,17 +1,19 @@ // Test that we can consume LLVM IR/bitcode in the frontend and produce // identical output to a standard compilation. +// FIXME: line directives don't match the reference output on ELF so we can't compare. + // Reference output: // RUN: %clang_cc1 -S -o %t.s %s // LLVM bitcode: // RUN: %clang_cc1 -emit-llvm-bc -o %t.bc %s // RUN: %clang_cc1 -S -o - %t.bc > %t.bc.s -// RUN: diff %t.s %t.bc.s +// RUN-FIXME: diff %t.s %t.bc.s // LLVM IR source code: // RUN: %clang_cc1 -emit-llvm-bc -o %t.ll %s // RUN: %clang_cc1 -S -o - %t.ll > %t.ll.s -// RUN: diff %t.s %t.ll.s +// RUN-FIXME: diff %t.s %t.ll.s int f() { return 0; } |