Searched refs:P0STR (Results 1 – 1 of 1) sorted by relevance
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 191 #define P0STR "ptrtoint (i32** @dummy to i32)" in TEST() macro 199 CHECK(ConstantExpr::getNeg(P0), "sub i32 0, " P0STR); in TEST() 201 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1"); in TEST() 202 CHECK(ConstantExpr::getAdd(P0, P0), "add i32 " P0STR ", " P0STR); in TEST() 203 CHECK(ConstantExpr::getAdd(P0, P0, false, true), "add nsw i32 " P0STR ", " in TEST() 204 P0STR); in TEST() 205 CHECK(ConstantExpr::getAdd(P0, P0, true, true), "add nuw nsw i32 " P0STR ", " in TEST() 206 P0STR); in TEST() 208 CHECK(ConstantExpr::getSub(P0, P0), "sub i32 " P0STR ", " P0STR); in TEST() 210 CHECK(ConstantExpr::getMul(P0, P0), "mul i32 " P0STR ", " P0STR); in TEST() [all …]
|