Skip to content

Commit 97b3514

Browse files
author
Pratheek Gowda BS
committed
resolved the format issue and pushed
1 parent 94dd113 commit 97b3514

File tree

3 files changed

+243
-249
lines changed

3 files changed

+243
-249
lines changed

llvm/include/llvm/Analysis/TargetLibraryInfo.td

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,13 +1142,13 @@ def ilogbf : TargetLibCall<"ilogbf", Int, [Flt]>;
11421142
def ilogbl : TargetLibCall<"ilogbl", Int, [LDbl]>;
11431143

11441144
/// long long llrint(double x);
1145-
def llrint : TargetLibCall<"llrint",LLong,[Dbl]>;
1145+
def llrint : TargetLibCall<"llrint", LLong, [Dbl]>;
11461146

1147-
///long long llrintf( float x);
1148-
def llrintf : TargetLibCall<"llrintf",LLong,[Flt]>;
1147+
/// long long llrintf( float x);
1148+
def llrintf : TargetLibCall<"llrintf", LLong, [Flt]>;
11491149

1150-
///long long llrintl(long double x);
1151-
def llrintl : TargetLibCall<"llrintl",LLong,[LDbl]>;
1150+
/// long long llrintl(long double x);
1151+
def llrintl : TargetLibCall<"llrintl", LLong, [LDbl]>;
11521152

11531153
/// double logb(double x);
11541154
def logb : TargetLibCall<"logb", Dbl, [Dbl]>;
@@ -1245,22 +1245,22 @@ def nearbyintf : TargetLibCall<"nearbyintf", Flt, [Flt]>;
12451245
def nearbyintl : TargetLibCall<"nearbyintl", LDbl, [LDbl]>;
12461246

12471247
/// double nextafter(double x, double y);
1248-
def nextafter : TargetLibCall< "nextafter", Dbl, [Dbl, Dbl]>;
1248+
def nextafter : TargetLibCall<"nextafter", Dbl, [Dbl, Dbl]>;
12491249

12501250
/// float nextafterf(float x, float y);
1251-
def nextafterf : TargetLibCall< "nextafterf", Flt, [Flt, Flt]>;
1251+
def nextafterf : TargetLibCall<"nextafterf", Flt, [Flt, Flt]>;
12521252

12531253
/// long double nextafterl(long double x, long double y);
1254-
def nextafterl : TargetLibCall< "nextafterl", LDbl, [LDbl, LDbl]>;
1254+
def nextafterl : TargetLibCall<"nextafterl", LDbl, [LDbl, LDbl]>;
12551255

12561256
/// double nexttoward(double x, long double y);
1257-
def nexttoward : TargetLibCall< "nexttoward", Dbl, [Dbl, LDbl]>;
1257+
def nexttoward : TargetLibCall<"nexttoward", Dbl, [Dbl, LDbl]>;
12581258

12591259
/// float nexttowardf(float x, long double y);
1260-
def nexttowardf : TargetLibCall< "nexttowardf", Flt, [Flt, LDbl]>;
1260+
def nexttowardf : TargetLibCall<"nexttowardf", Flt, [Flt, LDbl]>;
12611261

12621262
/// long double nexttowardl(long double x, long double y);
1263-
def nexttowardl : TargetLibCall< "nexttowardl", LDbl, [LDbl, LDbl]>;
1263+
def nexttowardl : TargetLibCall<"nexttowardl", LDbl, [LDbl, LDbl]>;
12641264

12651265
/// uint32_t ntohl(uint32_t netlong);
12661266
def ntohl : TargetLibCall<"ntohl", Int32, [Int32]>;

0 commit comments

Comments
 (0)