diff options
author | Kostya Serebryany <kcc@google.com> | 2016-12-27 21:20:06 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-12-27 21:20:06 +0000 |
commit | f24e52c0c27d9195b947c776c7ac00459cdf4205 (patch) | |
tree | d7e83581109394fc13c82edb5b74a6ed04572df2 /llvm/test/Instrumentation/SanitizerCoverage/switch-tracing.ll | |
parent | 14b1bcc14b6b9139c74d0f8f65455781635850b4 (diff) | |
download | bcm5719-llvm-f24e52c0c27d9195b947c776c7ac00459cdf4205.tar.gz bcm5719-llvm-f24e52c0c27d9195b947c776c7ac00459cdf4205.zip |
[sanitizer-coverage] sort the switch cases
llvm-svn: 290628
Diffstat (limited to 'llvm/test/Instrumentation/SanitizerCoverage/switch-tracing.ll')
-rw-r--r-- | llvm/test/Instrumentation/SanitizerCoverage/switch-tracing.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Instrumentation/SanitizerCoverage/switch-tracing.ll b/llvm/test/Instrumentation/SanitizerCoverage/switch-tracing.ll index 76a5a3dec0b..debb825db1b 100644 --- a/llvm/test/Instrumentation/SanitizerCoverage/switch-tracing.ll +++ b/llvm/test/Instrumentation/SanitizerCoverage/switch-tracing.ll @@ -11,8 +11,8 @@ entry: ; CHECK-NEXT: call void @__sanitizer_cov_trace_switch(i64 [[TMP]], i64* getelementptr inbounds ([5 x i64], [5 x i64]* @__sancov_gen_cov_switch_values, i32 0, i32 0)) switch i32 %x, label %sw.epilog [ i32 1, label %sw.bb - i32 101, label %sw.bb.1 - i32 1001, label %sw.bb.2 + i32 1001, label %sw.bb.1 + i32 101, label %sw.bb.2 ] sw.bb: ; preds = %entry |