diff options
author | Charles Davis <cdavis5x@gmail.com> | 2016-08-08 21:19:08 +0000 |
---|---|---|
committer | Charles Davis <cdavis5x@gmail.com> | 2016-08-08 21:19:08 +0000 |
commit | 0e37911334775fe64070ba38e2642b35b5c38cb6 (patch) | |
tree | 2daa4e4b6a92d5d76e7951b19a8a42c7da5a17f9 /clang/test/CodeGen/function-attributes.c | |
parent | ef313059e528f0bdb7e42104671eaca48e3b68c9 (diff) | |
download | bcm5719-llvm-0e37911334775fe64070ba38e2642b35b5c38cb6.tar.gz bcm5719-llvm-0e37911334775fe64070ba38e2642b35b5c38cb6.zip |
Revert "[Attr] Add support for the `ms_hook_prologue` attribute."
This reverts commit r278050. It depends on r278048, which will be
reverted.
llvm-svn: 278052
Diffstat (limited to 'clang/test/CodeGen/function-attributes.c')
-rw-r--r-- | clang/test/CodeGen/function-attributes.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/test/CodeGen/function-attributes.c b/clang/test/CodeGen/function-attributes.c index d0374c18660..8f682a715d7 100644 --- a/clang/test/CodeGen/function-attributes.c +++ b/clang/test/CodeGen/function-attributes.c @@ -108,18 +108,11 @@ void f20(void) { _setjmp(0); } -// CHECK-LABEL: define void @f21 -// CHECK: [[HOTPATCH:#[0-9]+]] -// CHECK: { -void __attribute__((ms_hook_prologue)) f21(void) { -} - // CHECK: attributes [[NUW]] = { nounwind optsize{{.*}} } // CHECK: attributes [[AI]] = { alwaysinline nounwind optsize{{.*}} } // CHECK: attributes [[NUW_OS_RN]] = { nounwind optsize readnone{{.*}} } // CHECK: attributes [[ALIGN]] = { nounwind optsize alignstack=16{{.*}} } // CHECK: attributes [[RT]] = { nounwind optsize returns_twice{{.*}} } -// CHECK: attributes [[HOTPATCH]] = { nounwind optsize{{.*}}"patchable-function"="ms-hotpatch"{{.*}} } // CHECK: attributes [[NR]] = { noreturn optsize } // CHECK: attributes [[NUW_RN]] = { nounwind optsize readnone } // CHECK: attributes [[RT_CALL]] = { optsize returns_twice } |