diff options
Diffstat (limited to 'llvm/test/Transforms/InferFunctionAttrs/annotate.ll')
-rw-r--r-- | llvm/test/Transforms/InferFunctionAttrs/annotate.ll | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InferFunctionAttrs/annotate.ll b/llvm/test/Transforms/InferFunctionAttrs/annotate.ll index 80ac8f99edc..371f1ad065b 100644 --- a/llvm/test/Transforms/InferFunctionAttrs/annotate.ll +++ b/llvm/test/Transforms/InferFunctionAttrs/annotate.ll @@ -514,6 +514,9 @@ declare i32 @getc_unlocked(%opaque*) ; CHECK: declare i32 @getchar() declare i32 @getchar() +; CHECK: declare i32 @getchar_unlocked() +declare i32 @getchar_unlocked() + ; CHECK: declare i8* @getenv(i8* nocapture) [[G1]] declare i8* @getenv(i8*) @@ -700,6 +703,9 @@ declare i32 @putc(i32, %opaque*) ; CHECK: declare i32 @putchar(i32) declare i32 @putchar(i32) +; CHECK: declare i32 @putchar_unlocked(i32) +declare i32 @putchar_unlocked(i32) + ; CHECK: declare i32 @puts(i8* nocapture readonly) [[G0]] declare i32 @puts(i8*) |