diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/coff-no-dead-strip.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/coff-no-dead-strip.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/coff-no-dead-strip.ll b/llvm/test/CodeGen/X86/coff-no-dead-strip.ll index 4f57a0f9b16..f82b5f003aa 100644 --- a/llvm/test/CodeGen/X86/coff-no-dead-strip.ll +++ b/llvm/test/CodeGen/X86/coff-no-dead-strip.ll @@ -5,15 +5,18 @@ @j = weak global i32 0 @k = internal global i32 0 declare x86_vectorcallcc void @l() +@m = private global i32 0 -@llvm.used = appending global [4 x i8*] [i8* bitcast (i32* @i to i8*), i8* bitcast (i32* @j to i8*), i8* bitcast (i32* @k to i8*), i8* bitcast (void ()* @l to i8*)] +@llvm.used = appending global [5 x i8*] [i8* bitcast (i32* @i to i8*), i8* bitcast (i32* @j to i8*), i8* bitcast (i32* @k to i8*), i8* bitcast (void ()* @l to i8*), i8* bitcast (i32* @m to i8*)] ; CHECK: .section .drectve ; CHECK-ULP: .ascii " /INCLUDE:_i" ; CHECK-ULP: .ascii " /INCLUDE:_j" ; CHECK-ULP-NOT: .ascii " /INCLUDE:_k" +; CHECK-ULP-NOT: .ascii " /INCLUDE:L_m" ; CHECK-NOULP: .ascii " /INCLUDE:i" ; CHECK-NOULP: .ascii " /INCLUDE:j" ; CHECK-NOULP-NOT: .ascii " /INCLUDE:k" +; CHECK-NOULP-NOT: .ascii " /INCLUDE:.Lm" ; CHECK: .ascii " /INCLUDE:l@@0" |

