- Don't seek "entry:" It dosen't appear with -Asserts.
- Take care that Codegen'ed Instruction(s) wouldn't have name(s) in -Asserts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@193908
91177308-0d34-0410-b5e6-
96231b3b80d8
extern "C" int __builtin_abs(int); // #3
int x = __builtin_abs(-2);
-// CHECK: entry:
-// CHECK-NEXT: store i32 2, i32* @x, align 4
+// CHECK: store i32 2, i32* @x, align 4
long y = __builtin_abs(-2l);
-// CHECK: entry:
-// CHECK-NEXT: %call = call i64 @_Z13__builtin_absl(i64 -2)
+// CHECK: [[Y:%.+]] = call i64 @_Z13__builtin_absl(i64 -2)
+// CHECK: store i64 [[Y]], i64* @y, align 8