diff options
author | Francis Visoiu Mistrih <fvisoiumistrih@apple.com> | 2017-05-23 21:22:16 +0000 |
---|---|---|
committer | Francis Visoiu Mistrih <fvisoiumistrih@apple.com> | 2017-05-23 21:22:16 +0000 |
commit | 1c98701e57e9e9342c375fd54ef99d827b61414a (patch) | |
tree | 9e5ca081f9efed711708da0c2a4cb6be7339a8c0 /llvm/test/CodeGen/X86/fast-isel-select-cmp.ll | |
parent | 968fe938031846b58bd2980d51cb9053b820ac2d (diff) | |
download | bcm5719-llvm-1c98701e57e9e9342c375fd54ef99d827b61414a.tar.gz bcm5719-llvm-1c98701e57e9e9342c375fd54ef99d827b61414a.zip |
AsmPrinter: mark the beginning and the end of a function in verbose mode
llvm-svn: 303690
Diffstat (limited to 'llvm/test/CodeGen/X86/fast-isel-select-cmp.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-isel-select-cmp.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/fast-isel-select-cmp.ll b/llvm/test/CodeGen/X86/fast-isel-select-cmp.ll index 1af30e9f32f..4a8e8792f98 100644 --- a/llvm/test/CodeGen/X86/fast-isel-select-cmp.ll +++ b/llvm/test/CodeGen/X86/fast-isel-select-cmp.ll @@ -4,9 +4,9 @@ ; different basic blocks. define i32 @select_cmp_cmov_i32(i32 %a, i32 %b) { -; CHECK-LABEL: select_cmp_cmov_i32 +; CHECK-LABEL: select_cmp_cmov_i32: ; CHECK-LABEL: continue -; CHECK-NOT: cmp +; CHECK-NOT: cmp{{[^_]}} %1 = icmp ult i32 %a, %b br i1 %1, label %continue, label %exit @@ -19,9 +19,9 @@ exit: } define float @select_fcmp_oeq_f32(float %a, float %b, float %c, float %d) { -; CHECK-LABEL: select_fcmp_oeq_f32 +; CHECK-LABEL: select_fcmp_oeq_f32: ; CHECK-LABEL: continue -; CHECK-NOT: cmp +; CHECK-NOT: cmp{{[^_]}} %1 = fcmp oeq float %a, %b br i1 %1, label %continue, label %exit @@ -34,7 +34,7 @@ exit: } define float @select_fcmp_one_f32(float %a, float %b, float %c, float %d) { -; CHECK-LABEL: select_fcmp_one_f32 +; CHECK-LABEL: select_fcmp_one_f32: ; CHECK-LABEL: continue ; CHECK-NOT: ucomi %1 = fcmp one float %a, %b |