diff options
author | Adrian Prantl <aprantl@apple.com> | 2016-04-15 22:05:38 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2016-04-15 22:05:38 +0000 |
commit | dc75a6b517db0309d00e0cd456608ecca3d6452e (patch) | |
tree | af17684dd7c9ba86932538cbb1eaf2ca3f626e75 /llvm/test/Transforms/LoopVectorize | |
parent | b60397f54c6ac8e0f0dc54c8a4c25b9e9863d828 (diff) | |
download | bcm5719-llvm-dc75a6b517db0309d00e0cd456608ecca3d6452e.tar.gz bcm5719-llvm-dc75a6b517db0309d00e0cd456608ecca3d6452e.zip |
Convert this sample-based-profiling testcase to use a NoDebug CU.
llvm-svn: 266481
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll b/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll index 36eb172df7e..c14a2cb91b6 100644 --- a/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll +++ b/llvm/test/Transforms/LoopVectorize/X86/vectorization-remarks.ll @@ -2,9 +2,6 @@ ; RUN: opt < %s -loop-vectorize -force-vector-width=1 -force-vector-interleave=4 -mtriple=x86_64-unknown-linux -S -pass-remarks='loop-vectorize' 2>&1 | FileCheck -check-prefix=UNROLLED %s ; RUN: opt < %s -loop-vectorize -force-vector-width=1 -force-vector-interleave=1 -mtriple=x86_64-unknown-linux -S -pass-remarks-analysis='loop-vectorize' 2>&1 | FileCheck -check-prefix=NONE %s -; This code has all the !dbg annotations needed to track source line information, -; but is missing the llvm.dbg.cu annotation. This prevents code generation from -; emitting debug info in the final output. ; RUN: llc < %s -mtriple x86_64-pc-linux-gnu -o - | FileCheck -check-prefix=DEBUG-OUTPUT %s ; DEBUG-OUTPUT-NOT: .loc ; DEBUG-OUTPUT-NOT: {{.*}}.debug_info @@ -73,4 +70,4 @@ declare void @ibar(i32*) #1 !21 = !{!13, !13, i64 0} !22 = !DILocation(line: 20, column: 3, scope: !4) !23 = !DILocation(line: 21, column: 3, scope: !4) -!24 = distinct !DICompileUnit(language: DW_LANG_C89, file: !1) +!24 = distinct !DICompileUnit(language: DW_LANG_C89, file: !1, emissionKind: NoDebug) |