Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
3cab3740
Commit
3cab3740
authored
11 years ago
by
Aaron Ballman
Browse files
Options
Downloads
Patches
Plain Diff
Silencing an MSVC warning.
llvm-svn: 192042
parent
7200a46c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/unittests/IR/IRBuilderTest.cpp
+2
-2
2 additions, 2 deletions
llvm/unittests/IR/IRBuilderTest.cpp
with
2 additions
and
2 deletions
llvm/unittests/IR/IRBuilderTest.cpp
+
2
−
2
View file @
3cab3740
...
...
@@ -187,8 +187,8 @@ TEST_F(IRBuilderTest, RAIIHelpersTest) {
EXPECT_FALSE
(
Builder
.
getFastMathFlags
().
allowReciprocal
());
MDBuilder
MDB
(
M
->
getContext
());
MDNode
*
FPMathA
=
MDB
.
createFPMath
(
0.01
);
MDNode
*
FPMathB
=
MDB
.
createFPMath
(
0.1
);
MDNode
*
FPMathA
=
MDB
.
createFPMath
(
0.01
f
);
MDNode
*
FPMathB
=
MDB
.
createFPMath
(
0.1
f
);
Builder
.
SetDefaultFPMathTag
(
FPMathA
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment