[PATCH] D68713: [FPEnv] Change test to conform to strictfp attribute rules
Kevin P. Neal via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 9 10:27:53 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rG44e988ab14cb: [FPEnv][NFC] Change test to conform to strictfp attribute rules. (authored by kpn).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68713/new/
https://reviews.llvm.org/D68713
Files:
llvm/test/Bitcode/compatibility.ll
Index: llvm/test/Bitcode/compatibility.ll
===================================================================
--- llvm/test/Bitcode/compatibility.ll
+++ llvm/test/Bitcode/compatibility.ll
@@ -1374,9 +1374,6 @@
call void @f.nobuiltin() builtin
; CHECK: call void @f.nobuiltin() #43
- call void @f.strictfp() strictfp
- ; CHECK: call void @f.strictfp() #44
-
call fastcc noalias i32* @f.noalias() noinline
; CHECK: call fastcc noalias i32* @f.noalias() #12
tail call ghccc nonnull i32* @f.nonnull() minsize
@@ -1392,6 +1389,13 @@
ret void
}
+define void @instructions.strictfp() #44 {
+ call void @f.strictfp() strictfp
+ ; CHECK: call void @f.strictfp() #44
+
+ ret void
+}
+
define void @instructions.call_notail() {
notail call void @f1()
; CHECK: notail call void @f1()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68713.224096.patch
Type: text/x-patch
Size: 807 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191009/2cdf3f1b/attachment.bin>
More information about the llvm-commits
mailing list